class GuiApp
: public QMainWindow,
public GPListener
( callback API
-Class
),
public Thread
public:
void newPeer (const char *pszNodeUUID); // implemented on GPListener
...
private slots:
...
};
inline void GuiApp::newPeer (const char *pszNodeUUID)
{
emit processPeerUpdate(pszNodeUUID);
}
class GuiApp : public QMainWindow, public GPListener( callback API-Class), public Thread
public:
void newPeer (const char *pszNodeUUID); // implemented on GPListener
...
private slots:
void processPeerUpdate(QString p);
...
};
inline void GuiApp::newPeer (const char *pszNodeUUID)
{
emit processPeerUpdate(pszNodeUUID);
}
To copy to clipboard, switch view to plain text mode
Gives me a run time Error when:
ui.tableWidget->setItem(0,0,pszNodeUUID);
ui.tableWidget->setItem(0,0,pszNodeUUID);
To copy to clipboard, switch view to plain text mode
I can't understand the register process.. is it possible to explain it with more detail please.
Bookmarks