diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-03-13 00:23:00 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-03-13 11:00:27 +0100 |
commit | 707c0b1761e2823e4253bcb441a1a54478e5b76d (patch) | |
tree | f6fb2b89ca049c11edd4dd3bb1c9acc42564676c /src/mainview.cpp | |
parent | Fix toolbars rekonfig... (diff) | |
download | rekonq-707c0b1761e2823e4253bcb441a1a54478e5b76d.tar.xz |
Get sure urlbar(s) are deleted when related webtab is
Heinz, Paul. Please test actual master before backporting this to
0.9 series. Many thanks for your help and for this bug report.
I'm crossing fingers to hear good news from your tests ;)
CCBUG:295301
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 19e5531d..419dc413 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -500,7 +500,7 @@ void MainView::closeTab(int index, bool del) if (del) { - tabToClose->deleteLater(); + delete tabToClose; } } |