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:
|
case GUI_UNREGISTER_SCRIPT_LANG:
|
||||||
emit unregisterScriptLang((int)param1);
|
emit unregisterScriptLang((int)param1);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GUI_UPDATE_ARGUMENT_VIEW:
|
||||||
|
emit updateArgumentView();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,6 +101,7 @@ signals:
|
||||||
void updatePatches();
|
void updatePatches();
|
||||||
void updateCallStack();
|
void updateCallStack();
|
||||||
void updateSEHChain();
|
void updateSEHChain();
|
||||||
|
void updateArgumentView();
|
||||||
void symbolRefreshCurrent();
|
void symbolRefreshCurrent();
|
||||||
void loadSourceFile(const QString path, int line, int selection);
|
void loadSourceFile(const QString path, int line, int selection);
|
||||||
void setIconMenuEntry(int hEntry, QIcon icon);
|
void setIconMenuEntry(int hEntry, QIcon icon);
|
||||||
|
|
Loading…
Reference in New Issue