diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-27 10:45:43 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-27 10:45:43 +0200 |
commit | 3d3dc5dd2bab3685687496d7ab039cd0bd8f3cd0 (patch) | |
tree | 5779782a2ea89ebae8c6bdf24ac555fe4159bc6f /src/mainwindow.cpp | |
parent | Merge commit 'megabigbug/PrintPreview' (diff) | |
parent | Fix KPassivePopup crash (diff) | |
download | rekonq-3d3dc5dd2bab3685687496d7ab039cd0bd8f3cd0.tar.xz |
Merge commit 'megabigbug/KPassivePopup'
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
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; } |