From 623fdd7bdebca8841ea6afadefd866539d565c42 Mon Sep 17 00:00:00 2001 From: kervala Date: Tue, 14 Jun 2016 19:55:41 +0200 Subject: [PATCH] Changed: Clear all profiles components after uninstalling them --- .../ryzom/tools/client/ryzom_installer/src/operationdialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index 9e06cef1c..dcc4cfc1c 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -885,6 +885,9 @@ void COperationDialog::deleteComponentsProfiles() config->removeProfile(profileId); } + // clear list of all profiles to uninstall + m_components.profiles.clear(); + emit success(m_components.servers.size()); emit done(); }