summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtTabWidget.h')
-rw-r--r--Swift/QtUI/QtTabWidget.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Swift/QtUI/QtTabWidget.h b/Swift/QtUI/QtTabWidget.h
index e4a44ce..7a73b75 100644
--- a/Swift/QtUI/QtTabWidget.h
+++ b/Swift/QtUI/QtTabWidget.h
@@ -2,17 +2,20 @@
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
+
#include <QTabWidget>
namespace Swift {
class QtTabWidget : public QTabWidget {
- Q_OBJECT
+ Q_OBJECT
public:
QtTabWidget(QWidget* parent);
- ~QtTabWidget();
+ virtual ~QtTabWidget();
+
QTabBar* tabBar();
+ void setTabBar(QTabBar* tabBar);
};
}