Gui: replace slots with member function pointers
This commit is contained in:
@@ -610,7 +610,7 @@ bool PythonEditorView::onMsg(const char* pMsg,const char** ppReturn)
|
||||
return true;
|
||||
}
|
||||
else if (strcmp(pMsg,"StartDebug")==0) {
|
||||
QTimer::singleShot(300, this, SLOT(startDebug()));
|
||||
QTimer::singleShot(300, this, &PythonEditorView::startDebug);
|
||||
return true;
|
||||
}
|
||||
else if (strcmp(pMsg,"ToggleBreakpoint")==0) {
|
||||
|
||||
Reference in New Issue
Block a user