Fixes crashes if parent is destroyed. Found by krazy. Details at: http://blogs.kde.org/node/3919 --- src/recmonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/recmonitor.cpp b/src/recmonitor.cpp index 83b3ec1..1ffd419 100644 --- a/src/recmonitor.cpp +++ b/src/recmonitor.cpp @@ -884,7 +884,7 @@ void RecMonitor::manageCapturedFiles() kDebug() << capturedFiles; if (capturedFiles.count() > 0) { - ManageCapturesDialog *d = new ManageCapturesDialog(capturedFiles, this); + QPointer<ManageCapturesDialog> d = new ManageCapturesDialog(capturedFiles, this); if (d->exec() == QDialog::Accepted) { emit addProjectClipList(d->importFiles()); } -- 1.7.10.4 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Kdenlive-devel mailing list Kdenlive-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kdenlive-devel