diff options
author | Bevan Weiss <bevan.weiss@gmail.com> | 2025-01-02 23:45:35 +1100 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-02-11 23:14:49 -0800 |
commit | fcae786168ee7c148ac932d725357f9714ad6631 (patch) | |
tree | 719b82a32883ccc652313e418f8a633d4c6ae9ad /src/ext/Util/wixext/Symbols/GroupSymbol.cs | |
parent | eda11c7eb726da970de68c5b353f946d1da0a7a3 (diff) | |
download | wix-fcae786168ee7c148ac932d725357f9714ad6631.tar.gz wix-fcae786168ee7c148ac932d725357f9714ad6631.tar.bz2 wix-fcae786168ee7c148ac932d725357f9714ad6631.zip |
Re-align enumeration values to those for User account modifications.
Since there's no reason to not have them identical where practical.
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | src/ext/Util/wixext/Symbols/GroupSymbol.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ext/Util/wixext/Symbols/GroupSymbol.cs b/src/ext/Util/wixext/Symbols/GroupSymbol.cs index ef1dc33f..ac6f6608 100644 --- a/src/ext/Util/wixext/Symbols/GroupSymbol.cs +++ b/src/ext/Util/wixext/Symbols/GroupSymbol.cs | |||
@@ -78,12 +78,12 @@ namespace WixToolset.Util.Symbols | |||
78 | public enum SymbolAttributes | 78 | public enum SymbolAttributes |
79 | { | 79 | { |
80 | None = 0x00000000, | 80 | None = 0x00000000, |
81 | FailIfExists = 0x00000001, | 81 | FailIfExists = 0x00000010, |
82 | UpdateIfExists = 0x00000002, | 82 | UpdateIfExists = 0x00000020, |
83 | DontRemoveOnUninstall = 0x00000004, | 83 | DontRemoveOnUninstall = 0x00000100, |
84 | DontCreateGroup = 0x00000008, | 84 | DontCreateGroup = 0x00000200, |
85 | NonVital = 0x00000010, | 85 | NonVital = 0x00000400, |
86 | RemoveComment = 0x00000020, | 86 | RemoveComment = 0x00000800, |
87 | } | 87 | } |
88 | 88 | ||
89 | public enum SymbolFields | 89 | public enum SymbolFields |