summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-27 10:45:43 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-27 10:45:43 +0200
commit3d3dc5dd2bab3685687496d7ab039cd0bd8f3cd0 (patch)
tree5779782a2ea89ebae8c6bdf24ac555fe4159bc6f
parentMerge commit 'megabigbug/PrintPreview' (diff)
parentFix KPassivePopup crash (diff)
downloadrekonq-3d3dc5dd2bab3685687496d7ab039cd0bd8f3cd0.tar.xz
Merge commit 'megabigbug/KPassivePopup'
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b93d4dc9..c4a61674 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -901,7 +901,7 @@ void MainWindow::notifyMessage(const QString &msg, Rekonq::Notify status)
// deleting popus if empty msgs
if(msg.isEmpty())
{
- delete m_popup;
+ m_popup->deleteLater();
return;
}