diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-30 16:56:40 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-30 16:56:40 +0100 |
commit | c0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89 (patch) | |
tree | 0627ff26b4899e5c0757bfea8fbd1248f63ef691 /src/history.h | |
parent | Ignoring .ctagsdb (diff) | |
parent | Fixed FindBar crash && refactored to look like kate searchbar (diff) | |
download | rekonq-c0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89.tar.xz |
Merge branch 'xmlgui'
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; }; |