debugger: remove enum DebuggerType, the engine pointer is enough.

This commit is contained in:
hjk
2009-05-07 17:25:32 +02:00
parent f70ce8dc36
commit b4787c0a15
2 changed files with 16 additions and 44 deletions

View File

@@ -204,10 +204,6 @@ public:
QMainWindow *mainWindow() const { return m_mainWindow; }
QLabel *statusLabel() const { return m_statusLabel; }
enum DebuggerType {
NoDebugger, GdbDebugger, ScriptDebugger, WinDebugger, TcfDebugger
};
public slots:
void startNewDebugger(DebuggerRunControl *runControl);
void exitDebugger();
@@ -371,7 +367,6 @@ public:
private:
void init();
void setDebuggerType(DebuggerType type);
void runTest(const QString &fileName);
QDockWidget *createDockForWidget(QWidget *widget);
Q_SLOT void createNewDock(QWidget *widget);
@@ -384,7 +379,6 @@ private:
void setToolTipExpression(const QPoint &pos, const QString &exp0);
DebuggerRunControl *m_runControl;
DebuggerType m_debuggerType;
/// Views
QMainWindow *m_mainWindow;