diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-11-23 00:09:49 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-11-23 00:09:49 +0100 |
commit | aca0bf7ec9a98c1ef7a4147798c76e90e4cc7992 (patch) | |
tree | 186b0fac14b5d35f2e957646bff25ca539ba4dc8 /src/tabwidget.h | |
parent | KDE-izing cookie dialogs.. (diff) | |
download | rekonq-aca0bf7ec9a98c1ef7a4147798c76e90e4cc7992.tar.xz |
1st implementation of new (K)urlbar.
It compiles but doesn't work (yet..)
Diffstat (limited to 'src/tabwidget.h')
-rw-r--r-- | src/tabwidget.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tabwidget.h b/src/tabwidget.h index b3c31c0e..e6399971 100644 --- a/src/tabwidget.h +++ b/src/tabwidget.h @@ -109,9 +109,10 @@ private: #include <QUrl> #include <QTabWidget> +#include <KLineEdit> + QT_BEGIN_NAMESPACE class QCompleter; -class QLineEdit; class QMenu; class QStackedWidget; QT_END_NAMESPACE @@ -154,10 +155,10 @@ public: QAction *previousTabAction() const; QWidget *lineEditStack() const; - QLineEdit *currentLineEdit() const; + KLineEdit *currentLineEdit() const; WebView *currentWebView() const; WebView *webView(int index) const; - QLineEdit *lineEdit(int index) const; + KLineEdit *lineEdit(int index) const; int webViewIndex(WebView *webView) const; QByteArray saveState() const; |