GUI: added updateArgumentView signal to the bridge
This commit is contained in:
parent
43dd0c113f
commit
90432d61e6
|
@ -550,6 +550,10 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
|
|||
case GUI_UNREGISTER_SCRIPT_LANG:
|
||||
emit unregisterScriptLang((int)param1);
|
||||
break;
|
||||
|
||||
case GUI_UPDATE_ARGUMENT_VIEW:
|
||||
emit updateArgumentView();
|
||||
break;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
@ -101,6 +101,7 @@ signals:
|
|||
void updatePatches();
|
||||
void updateCallStack();
|
||||
void updateSEHChain();
|
||||
void updateArgumentView();
|
||||
void symbolRefreshCurrent();
|
||||
void loadSourceFile(const QString path, int line, int selection);
|
||||
void setIconMenuEntry(int hEntry, QIcon icon);
|
||||
|
|
Loading…
Reference in New Issue