diff options
Diffstat (limited to 'Swift/QtUI/QtTabWidget.h')
-rw-r--r-- | Swift/QtUI/QtTabWidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTabWidget.h b/Swift/QtUI/QtTabWidget.h index a9d0df8..f19721d 100644 --- a/Swift/QtUI/QtTabWidget.h +++ b/Swift/QtUI/QtTabWidget.h @@ -1,25 +1,26 @@ /* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <QTabWidget> namespace Swift { class QtTabWidget : public QTabWidget { Q_OBJECT public: QtTabWidget(QWidget* parent); virtual ~QtTabWidget(); QTabBar* tabBar(); void setTabBar(QTabBar* tabBar); protected: virtual void dragEnterEvent(QDragEnterEvent* event); virtual void dropEvent(QDropEvent* event); + virtual void paintEvent(QPaintEvent* event); }; } |