summaryrefslogtreecommitdiff
path: root/src/urlbar/urlbar.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-19 16:30:48 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-19 16:30:48 +0200
commit380b6fec3b11a562888f335cca2bcb412a120a22 (patch)
treef5ad26a416b9a82270e836be3ee230b51302aa0c /src/urlbar/urlbar.h
parentFix urlbar string as suggested by Johannes Zellner (diff)
parentSuggestions activation on demand (diff)
downloadrekonq-380b6fec3b11a562888f335cca2bcb412a120a22.tar.xz
Merge branch 'DefaultEngine'
Diffstat (limited to 'src/urlbar/urlbar.h')
-rw-r--r--src/urlbar/urlbar.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/urlbar/urlbar.h b/src/urlbar/urlbar.h
index 3ecd914e..9adc35a3 100644
--- a/src/urlbar/urlbar.h
+++ b/src/urlbar/urlbar.h
@@ -38,6 +38,9 @@
// KDE Includes
#include <KUrl>
+// Qt Includes
+#include <QWeakPointer>
+
// Forward Declarations
class QLinearGradient;
class QWidget;
@@ -69,7 +72,9 @@ protected:
virtual void dropEvent(QDropEvent *event);
private:
- CompletionWidget *_box;
+ void activateSuggestions(bool);
+
+ QWeakPointer<CompletionWidget> _box;
WebTab *_tab;
bool _privateMode;
};