summaryrefslogtreecommitdiff
path: root/utils/regtools/qeditor/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/regtools/qeditor/mainwindow.h')
-rw-r--r--utils/regtools/qeditor/mainwindow.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/regtools/qeditor/mainwindow.h b/utils/regtools/qeditor/mainwindow.h
index 67d33244ba..c5da66758e 100644
--- a/utils/regtools/qeditor/mainwindow.h
+++ b/utils/regtools/qeditor/mainwindow.h
@@ -35,12 +35,13 @@ public:
35 DocumentTab() { m_tab = 0; } 35 DocumentTab() { m_tab = 0; }
36 virtual bool Quit() = 0; 36 virtual bool Quit() = 0;
37 virtual QWidget *GetWidget() = 0; 37 virtual QWidget *GetWidget() = 0;
38 void SetTabWidget(MyTabWidget *tab) { m_tab = tab; } 38 void SetTabWidget(MyTabWidget *tab);
39 39
40protected: 40protected:
41 void OnModified(bool modified); 41 void OnModified(bool modified);
42 void SetTabName(const QString& name); 42 void SetTabName(const QString& name);
43 MyTabWidget *m_tab; 43 MyTabWidget *m_tab;
44 QString m_tabname;
44}; 45};
45 46
46class MyTabWidget : public QTabWidget 47class MyTabWidget : public QTabWidget
@@ -70,7 +71,7 @@ private:
70 void closeEvent(QCloseEvent *event); 71 void closeEvent(QCloseEvent *event);
71 72
72protected: 73protected:
73 void AddTab(DocumentTab *tab, const QString& title); 74 void AddTab(DocumentTab *tab);
74 bool Quit(); 75 bool Quit();
75 76
76private slots: 77private slots: