diff options
author | 2015-07-28 00:45:17 +0200 | |
---|---|---|
committer | 2015-07-29 11:19:43 +0200 | |
commit | a83ad4d11fb51771ecaff7d17a0c4ed8160430c6 (patch) | |
tree | 89b1e585f4196466204100bd4f869a34833c437e /src/osd/modules/debugger/qt/mainwindow.h | |
parent | 1b452e3bfb48e9c77e705a60ab285c382d457e8a (diff) |
debugqt: Port to Qt5 [O. Galibert]
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.h')
-rw-r--r-- | src/osd/modules/debugger/qt/mainwindow.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/qt/mainwindow.h b/src/osd/modules/debugger/qt/mainwindow.h index 53a9969baa2..4a93608772f 100644 --- a/src/osd/modules/debugger/qt/mainwindow.h +++ b/src/osd/modules/debugger/qt/mainwindow.h @@ -3,9 +3,12 @@ #ifndef __DEBUG_QT_MAIN_WINDOW_H__ #define __DEBUG_QT_MAIN_WINDOW_H__ -#include <QtGui/QtGui> #include <vector> +#include <QtWidgets/QLineEdit> +#include <QtWidgets/QVBoxLayout> +#include <QtWidgets/QComboBox> + #include "debug/dvdisasm.h" #include "debuggerview.h" @@ -43,7 +46,7 @@ private slots: void runToCursor(bool changedTo); void rightBarChanged(QAction* changedTo); - void executeCommand(bool withClear=true); + void executeCommandSlot(); void mountImage(bool changedTo); void unmountImage(bool changedTo); @@ -72,6 +75,7 @@ private: int m_historyIndex; std::vector<QString> m_inputHistory; void addToHistory(const QString& command); + void executeCommand(bool withClear); }; |