summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainview.cpp2
-rw-r--r--src/mainview.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 7dbe8b23..953f6f38 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -511,7 +511,7 @@ void MainView::closeTab(int index)
removeTab(index);
updateTabBar(); // UI operation: do it ASAP!!
- delete tab; // webView is scheduled for deletion.
+ tab->deleteLater(); // webView is scheduled for deletion.
emit tabsChanged();
diff --git a/src/mainview.h b/src/mainview.h
index f8a8c283..908389b1 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -148,7 +148,7 @@ private slots:
void postLaunch();
-
+
protected:
virtual void resizeEvent(QResizeEvent *event);