diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-29 01:52:07 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-29 01:52:07 +0100 |
commit | 9e7f74269e25062a33af0a2603bf258cd4b228e2 (patch) | |
tree | 62f97c608f8045dcc34ed4680b1d02313ecccc02 /src/history.h | |
parent | BrowserMainWindow --> MainWindow (diff) | |
download | rekonq-9e7f74269e25062a33af0a2603bf258cd4b228e2.tar.xz |
Ported from KMainWindow to KXmlGuiWindow.
Yeah!
..
Diffstat (limited to 'src/history.h')
-rw-r--r-- | src/history.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/history.h b/src/history.h index acd27192..4fac8cd6 100644 --- a/src/history.h +++ b/src/history.h @@ -38,6 +38,9 @@ #include <QWebHistoryInterface> +/** + * Elements in this class represent an history item + */ class HistoryItem { public: @@ -242,7 +245,7 @@ signals: public: HistoryMenu(QWidget *parent = 0); - void setInitialActions(QList<KAction*> actions); + void setInitialActions(QList<QAction*> actions); protected: bool prePopulated(); @@ -255,7 +258,7 @@ private slots: private: HistoryManager *m_history; HistoryMenuModel *m_historyMenuModel; - QList<KAction*> m_initialActions; + QList<QAction*> m_initialActions; }; |