diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-11-28 02:05:42 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-11-28 02:05:42 +0100 |
commit | 5b5bbe370303f6d146c125b0cb0b0c465cc1b3ff (patch) | |
tree | 9012c77d8161592829f967dad6368f335c0ac17b /src/tabwidget.h | |
parent | New step forwad in the street from QAction to KAction.. (diff) | |
download | rekonq-5b5bbe370303f6d146c125b0cb0b0c465cc1b3ff.tar.xz |
Final (hopefully) adjustments in tabwidget (Q/K)action management..
Diffstat (limited to 'src/tabwidget.h')
-rw-r--r-- | src/tabwidget.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tabwidget.h b/src/tabwidget.h index 7323c59d..63cd4e48 100644 --- a/src/tabwidget.h +++ b/src/tabwidget.h @@ -109,6 +109,7 @@ private: #include <QTabWidget> #include <KLineEdit> +#include <KMenu> QT_BEGIN_NAMESPACE class QCompleter; @@ -182,7 +183,7 @@ public slots: private slots: void currentChanged(int index); void aboutToShowRecentTabsMenu(); - void aboutToShowRecentTriggeredAction(KAction *action); + void aboutToShowRecentTriggeredAction(QAction *action); // need QAction! void webViewLoadStarted(); void webViewIconChanged(); void webViewTitleChanged(const QString &title); @@ -198,7 +199,7 @@ private: KAction *m_nextTabAction; KAction *m_previousTabAction; - QMenu *m_recentlyClosedTabsMenu; + KMenu *m_recentlyClosedTabsMenu; static const int m_recentlyClosedTabsSize = 10; QList<QUrl> m_recentlyClosedTabs; QList<WebActionMapper*> m_actions; |