diff options
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.h')
-rw-r--r-- | src/osd/modules/debugger/qt/mainwindow.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/osd/modules/debugger/qt/mainwindow.h b/src/osd/modules/debugger/qt/mainwindow.h index 4a93608772f..53a9969baa2 100644 --- a/src/osd/modules/debugger/qt/mainwindow.h +++ b/src/osd/modules/debugger/qt/mainwindow.h @@ -3,12 +3,9 @@ #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" @@ -46,7 +43,7 @@ private slots: void runToCursor(bool changedTo); void rightBarChanged(QAction* changedTo); - void executeCommandSlot(); + void executeCommand(bool withClear=true); void mountImage(bool changedTo); void unmountImage(bool changedTo); @@ -75,7 +72,6 @@ private: int m_historyIndex; std::vector<QString> m_inputHistory; void addToHistory(const QString& command); - void executeCommand(bool withClear); }; |