summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/rbutilqt/base/uninstall.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/rbutilqt/base/uninstall.cpp b/utils/rbutilqt/base/uninstall.cpp
index ea0ce31eed..db150b411c 100644
--- a/utils/rbutilqt/base/uninstall.cpp
+++ b/utils/rbutilqt/base/uninstall.cpp
@@ -101,15 +101,13 @@ void Uninstaller::uninstall(void)
101 dir.rmdir(dirList.at(j)); // rm works only on empty folders 101 dir.rmdir(dirList.at(j)); // rm works only on empty folders
102 } 102 }
103 // for speed reasons update log file only at the end. 103 // for speed reasons update log file only at the end.
104 installlog.beginGroup(uninstallSections.at(i));
105 for (const auto& file : deletedItems) 104 for (const auto& file : deletedItems)
106 { 105 {
107 installlog.remove(file); 106 installlog.remove(file);
108 } 107 }
109 installlog.endGroup();
110 108
109 installlog.remove("");
111 installlog.endGroup(); 110 installlog.endGroup();
112 //installlog.removeGroup(uninstallSections.at(i))
113 } 111 }
114 uninstallSections.clear(); 112 uninstallSections.clear();
115 installlog.sync(); 113 installlog.sync();