diff options
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; |