diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-10 00:48:57 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-10 00:48:57 +0100 |
commit | 332491c515a72ed173592a73562e7567e71e782f (patch) | |
tree | 3d02c97c6b79cab835048702b082d07d366480e8 /src/tabwidget.h | |
parent | nothing important (diff) | |
parent | Added Completion to new urlbar. ready for merge.. (diff) | |
download | rekonq-332491c515a72ed173592a73562e7567e71e782f.tar.xz |
merging newurlbar branch
Merge branch 'newurlbar'
Diffstat (limited to 'src/tabwidget.h')
-rw-r--r-- | src/tabwidget.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tabwidget.h b/src/tabwidget.h index 020376e1..27cc4611 100644 --- a/src/tabwidget.h +++ b/src/tabwidget.h @@ -110,10 +110,12 @@ private: // KDE Includes #include <KUrl> -#include <KLineEdit> #include <KMenu> #include <KTabWidget> +// Qt Includes +#include <QLineEdit> + QT_BEGIN_NAMESPACE class QCompleter; class QMenu; @@ -160,10 +162,10 @@ public: KAction *previousTabAction() const; QWidget *lineEditStack() const; - KLineEdit *currentLineEdit() const; + QLineEdit *currentLineEdit() const; WebView *currentWebView() const; WebView *webView(int index) const; - KLineEdit *lineEdit(int index) const; + QLineEdit *lineEdit(int index) const; int webViewIndex(WebView *webView) const; QByteArray saveState() const; |