summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-16 02:12:45 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-16 02:12:45 +0100
commitf364b998624e403a33dd1b79983f80b2d058da26 (patch)
tree9ff074a6108d42e82c826f0d2f7ecb5ac6fc1df9 /src/mainview.cpp
parentrekonq 0.3.92 (diff)
downloadrekonq-f364b998624e403a33dd1b79983f80b2d058da26.tar.xz
Fixes focus && let Protocol handler to just load on demand
the KDirLister class (and delete on finish)
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 8034563b..cf79ad9e 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -501,7 +501,7 @@ void MainView::closeTab(int index)
}
hasFocus = tab->hasFocus();
- //store close tab except homepage
+ // store close tab except homepage
if (!tab->url().prettyUrl().startsWith( QLatin1String("about:") ) && !tab->url().isEmpty())
{
QString title = tab->view()->title();
@@ -513,7 +513,7 @@ void MainView::closeTab(int index)
removeTab(index);
updateTabBar(); // UI operation: do it ASAP!!
- tab->deleteLater(); // webView is scheduled for deletion.
+ tab->deleteLater(); // tab is scheduled for deletion.
emit tabsChanged();