diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-11-08 12:05:58 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-11-08 12:05:58 +0100 |
commit | f6af24273de66c1f36dcd6ddcd97d45ed7e6f474 (patch) | |
tree | bceeec618f550d67788e1010a3d4f3f5e0816a98 /src/tabwidget.cpp | |
parent | Setting right license (diff) | |
download | rekonq-f6af24273de66c1f36dcd6ddcd97d45ed7e6f474.tar.xz |
Ported menubar to KDE
Diffstat (limited to 'src/tabwidget.cpp')
-rw-r--r-- | src/tabwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabwidget.cpp b/src/tabwidget.cpp index 6c340793..8808c926 100644 --- a/src/tabwidget.cpp +++ b/src/tabwidget.cpp @@ -385,7 +385,7 @@ QLineEdit *TabWidget::currentLineEdit() const WebView *TabWidget::currentWebView() const { - return webView(currentIndex()); +// return webView(currentIndex()); // FIXME } QLineEdit *TabWidget::lineEdit(int index) const @@ -406,7 +406,7 @@ WebView *TabWidget::webView(int index) const if (count() == 1) { TabWidget *that = const_cast<TabWidget*>(this); that->setUpdatesEnabled(false); - that->newTab(); +// that->newTab(); FIXME that->closeTab(0); that->setUpdatesEnabled(true); return currentWebView(); |