aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2024-01-16 12:30:15 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2024-01-17 10:47:51 +0000
commit201cea1efaba4174f76143b91df7221afdcafcc2 (patch)
tree2399a965ccfd30a73fe25138a300ddccf9dd9bf0
parent8e192cbe7a90ec57a0ed482ef277915264b124de (diff)
Amend 79c929 - postpone deleting the registry keys to v3.2.0 release
Change-Id: Ie425136e22fcbda4255963c20237fb21d3ac1883 Reviewed-by: Ali Can Demiralp <ali.demiralp@qt.io> Reviewed-by: Miguel Costa <miguel.costa@qt.io>
-rw-r--r--QtVsTools.Core/Common/Utils.Registry.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/QtVsTools.Core/Common/Utils.Registry.cs b/QtVsTools.Core/Common/Utils.Registry.cs
index 48210cc4..aa176f0d 100644
--- a/QtVsTools.Core/Common/Utils.Registry.cs
+++ b/QtVsTools.Core/Common/Utils.Registry.cs
@@ -33,8 +33,8 @@ namespace QtVsTools.Core.Common
// Copy keys and values
CopyRegistryKeys(sourcePath, destinationPath);
- // Delete source keys recursively
- Registry.CurrentUser.DeleteSubKeyTree(sourcePath, false);
+ // TODO v3.2.0: Delete source keys recursively
+ // Registry.CurrentUser.DeleteSubKeyTree(sourcePath, false);
}
}
}