diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-12 02:00:13 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-12 02:00:13 +0200 |
commit | d2b1a62a0ecdd286b9d83275170a3322ffafd32c (patch) | |
tree | 7ab453799004d0caa7fc3a3106c1c0374f3d9b6f /src/urlbar/completionwidget.h | |
parent | fix strings (diff) | |
download | rekonq-d2b1a62a0ecdd286b9d83275170a3322ffafd32c.tar.xz |
URLBAR ANIMATION: implementation fix
This commit follows the logic explained somewhere else, moving rekonq
to a better management for urls from user input.
1) users type strings --> we store them in QStrings
2) app load urls --> we should ever work with KUrls, trying to guess users needs
Here I also removed the unuseful QString icon from UrlSearchItem definition, as we
just have a type (Search, Browse, History, Books..), a (k)url and an Application::icon
method :)
Diffstat (limited to 'src/urlbar/completionwidget.h')
-rw-r--r-- | src/urlbar/completionwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar/completionwidget.h b/src/urlbar/completionwidget.h index a714bb17..ab78e489 100644 --- a/src/urlbar/completionwidget.h +++ b/src/urlbar/completionwidget.h @@ -58,7 +58,7 @@ private slots: void itemChosen(ListItem *item, Qt::MouseButton = Qt::LeftButton); signals: - void chosenUrl(const QString&, Rekonq::OpenType); + void chosenUrl(const KUrl &, Rekonq::OpenType); private: void sizeAndPosition(); |