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/tabwidget.h | |
parent | New Bookmarks menu, sharing bkmrs with Konqueror (diff) | |
download | rekonq-b9f8ccd9099fa48406203ad5c5389266b3318d88.tar.xz |
QUrl --> KUrl!
Diffstat (limited to 'src/tabwidget.h')
-rw-r--r-- | src/tabwidget.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/tabwidget.h b/src/tabwidget.h index 8e6d16b4..5a48072f 100644 --- a/src/tabwidget.h +++ b/src/tabwidget.h @@ -108,12 +108,14 @@ private: // ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -#include <QUrl> -#include <QTabWidget> - +// KDE Includes +#include <KUrl> #include <KLineEdit> #include <KMenu> +// Qt Includes +#include <QTabWidget> + QT_BEGIN_NAMESPACE class QCompleter; class QMenu; @@ -173,7 +175,7 @@ protected: void mouseReleaseEvent(QMouseEvent *event); public slots: - void loadUrlInCurrentTab(const QUrl &url); + void loadUrlInCurrentTab(const KUrl &url); WebView *newTab(bool makeCurrent = true); void cloneTab(int index = -1); void closeTab(int index = -1); @@ -204,7 +206,7 @@ private: KMenu *m_recentlyClosedTabsMenu; static const int m_recentlyClosedTabsSize = 10; - QList<QUrl> m_recentlyClosedTabs; + QList<KUrl> m_recentlyClosedTabs; QList<WebActionMapper*> m_actions; QCompleter *m_lineEditCompleter; |