diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-05 00:27:23 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-05 00:27:23 +0100 |
commit | b9f8ccd9099fa48406203ad5c5389266b3318d88 (patch) | |
tree | 3725c935fb14346301df79f1ec8fb4e6eebca66f /src/searchbar.h | |
parent | New Bookmarks menu, sharing bkmrs with Konqueror (diff) | |
download | rekonq-b9f8ccd9099fa48406203ad5c5389266b3318d88.tar.xz |
QUrl --> KUrl!
Diffstat (limited to 'src/searchbar.h')
-rw-r--r-- | src/searchbar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/searchbar.h b/src/searchbar.h index 40235891..92f20f8e 100644 --- a/src/searchbar.h +++ b/src/searchbar.h @@ -23,10 +23,10 @@ // KDE Includes #include <KLineEdit> +#include <KUrl> // Qt Includes #include <QWidget> -#include <QUrl> class SearchBar : public QWidget { @@ -45,7 +45,7 @@ private: KLineEdit *m_lineEdit; signals: - void search(const QUrl &url); + void search(const KUrl &url); }; |