summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/mainwindow.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2015-08-01 20:41:27 +0200
committer Olivier Galibert <galibert@pobox.com>2015-08-01 20:43:47 +0200
commit9485ca9d43dcab732325e4ba16194153ea293d4b (patch)
tree5fb55315d4a4f3c001ecbdcf3b877d20ad60f2a6 /src/osd/modules/debugger/qt/mainwindow.h
parentc9174e36897ccb723de18cb0361557629caba912 (diff)
Revert "debugqt: Port to Qt5 [O. Galibert]"
Experience shows it's too early for that. I'll keep that in a corner and we'll see again later.
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.h')
-rw-r--r--src/osd/modules/debugger/qt/mainwindow.h8
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);
};