From 70029587ca0a7a2c0ffdbc48145c369385dfc803 Mon Sep 17 00:00:00 2001 From: Dominik Wenger Date: Sat, 12 Jul 2008 12:54:11 +0000 Subject: rbutil: call processEvents while uninstalling, so GUI doesnt freeze. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18014 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/uninstall.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rbutil') diff --git a/rbutil/rbutilqt/uninstall.cpp b/rbutil/rbutilqt/uninstall.cpp index 4bd5c90485..fda802f445 100644 --- a/rbutil/rbutilqt/uninstall.cpp +++ b/rbutil/rbutilqt/uninstall.cpp @@ -49,6 +49,7 @@ void Uninstaller::uninstall(ProgressloggerInterface* dp) for(int i=0; i< uninstallSections.size() ; i++) { m_dp->addItem(tr("Uninstalling ") + uninstallSections.at(i) + " ...",LOGINFO); + QCoreApplication::processEvents(); // create list of all other install sections QStringList sections = installlog.childGroups(); sections.removeAt(sections.indexOf(uninstallSections.at(i))); @@ -80,6 +81,7 @@ void Uninstaller::uninstall(ProgressloggerInterface* dp) if(deleteFile && !QFile::remove(toDelete.filePath())) m_dp->addItem(tr("Could not delete: ")+ toDelete.filePath(),LOGWARNING); installlog.remove(toDeleteList.at(j)); + qDebug() << "deleted: " << toDelete.filePath() ; } else // if it is a dir, remember it for later deletion { @@ -88,6 +90,7 @@ void Uninstaller::uninstall(ProgressloggerInterface* dp) dirList << toDeleteList.at(j); } installlog.endGroup(); + QCoreApplication::processEvents(); } // delete the dirs installlog.beginGroup(uninstallSections.at(i)); -- cgit v1.2.3