aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:48:20 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 16:02:37 -0700
commit3859a8cd7d6001f7b49c22065e33242ddb486fbb (patch)
tree5e347f24751b0776bf60b311f4f6548030084625 /src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
parentfcba5d0d1cdd052ed0c960d435d5dcb62d22840d (diff)
downloadwix-3859a8cd7d6001f7b49c22065e33242ddb486fbb.tar.gz
wix-3859a8cd7d6001f7b49c22065e33242ddb486fbb.tar.bz2
wix-3859a8cd7d6001f7b49c22065e33242ddb486fbb.zip
Adopt "Ref" as reference convention over "_"
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
index b5e5069a..e6c089a1 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
@@ -28,17 +28,17 @@ namespace WixToolset.Core.WindowsInstaller.Bind
28 { 28 {
29 if (wixPropertyRow.Admin) 29 if (wixPropertyRow.Admin)
30 { 30 {
31 adminProperties.Add(wixPropertyRow.Property_); 31 adminProperties.Add(wixPropertyRow.PropertyRef);
32 } 32 }
33 33
34 if (wixPropertyRow.Hidden) 34 if (wixPropertyRow.Hidden)
35 { 35 {
36 hiddenProperties.Add(wixPropertyRow.Property_); 36 hiddenProperties.Add(wixPropertyRow.PropertyRef);
37 } 37 }
38 38
39 if (wixPropertyRow.Secure) 39 if (wixPropertyRow.Secure)
40 { 40 {
41 secureProperties.Add(wixPropertyRow.Property_); 41 secureProperties.Add(wixPropertyRow.PropertyRef);
42 } 42 }
43 } 43 }
44 44