diff options
Diffstat (limited to 'Swift/QtUI/QtTabbable.h')
-rw-r--r-- | Swift/QtUI/QtTabbable.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Swift/QtUI/QtTabbable.h b/Swift/QtUI/QtTabbable.h index c3cfa76..db83ba9 100644 --- a/Swift/QtUI/QtTabbable.h +++ b/Swift/QtUI/QtTabbable.h @@ -1,21 +1,18 @@ /* - * Copyright (c) 2014 Isode Limited. + * Copyright (c) 2014-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <string> -#include <QList> #include <QWidget> -class QShortcut; - namespace Swift { class QtTabbable : public QWidget { Q_OBJECT public: enum AlertType {NoActivity, WaitingActivity, ImpendingActivity}; virtual ~QtTabbable(); @@ -35,11 +32,8 @@ namespace Swift { void windowOpening(); void wantsToActivate(); void requestPreviousTab(); void requestNextTab(); void requestActiveTab(); void requestFlash(); - - private: - QList<QShortcut*> shortcuts; }; } |