summaryrefslogtreecommitdiff
path: root/src/history/historymanager.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-06-04 23:21:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-06-05 00:49:37 +0200
commitdeab0dd37edbc4007a3c2cf32d31811aff0e7e2d (patch)
treeb2a2884a69dd03428cdb9bcf15150a17ebbff867 /src/history/historymanager.h
parentThis should fix the Ctrl+w bug. Anyway, it really doesn't solve it: there is ... (diff)
downloadrekonq-deab0dd37edbc4007a3c2cf32d31811aff0e7e2d.tar.xz
Awesome bar speed up
This commit introduces notable changes and needs a lot of tests Courtesy patch from Mathias Kraus. Thanks :) BUG: 237390
Diffstat (limited to 'src/history/historymanager.h')
-rw-r--r--src/history/historymanager.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/history/historymanager.h b/src/history/historymanager.h
index 0f131782..7b82579d 100644
--- a/src/history/historymanager.h
+++ b/src/history/historymanager.h
@@ -32,6 +32,7 @@
// Rekonq Includes
#include "rekonq_defines.h"
+#include "urlresolver.h"
// KDE Includes
#include <KUrl>
@@ -113,9 +114,6 @@ class HistoryModel;
class HistoryFilterModel;
class HistoryTreeModel;
-class KCompletion;
-
-
/**
* THE History Manager:
* It manages rekonq history
@@ -155,9 +153,9 @@ public:
HistoryTreeModel *historyTreeModel() const;
/**
- * @returns the KCompletion object.
+ * @returns the AwesomeUrlCompletion object.
*/
- KCompletion *completionObject() const;
+ AwesomeUrlCompletion *completionObject() const;
void addDownload(const QString &srcUrl, const QString &destUrl);
DownloadList downloads();
@@ -189,7 +187,7 @@ private:
HistoryTreeModel *m_historyTreeModel;
// the completion object we sync with
- KCompletion *m_completion;
+ AwesomeUrlCompletion *m_completion;
};