aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-07 13:20:47 -0700
committerRob Mensching <rob@firegiant.com>2019-10-07 21:41:53 -0700
commit3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6 (patch)
tree2a876f13d1751c35620d5f406c0489f10351819e /src/WixToolset.Data/Tuples/IniLocatorTuple.cs
parent62d562c060d94c587e684834d25345498d638430 (diff)
downloadwix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.tar.gz
wix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.tar.bz2
wix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.zip
Fix AppSearch related tuples
Diffstat (limited to 'src/WixToolset.Data/Tuples/IniLocatorTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/IniLocatorTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
index b95bcdf2..0bb670c6 100644
--- a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
+++ b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
@@ -69,15 +69,15 @@ namespace WixToolset.Data.Tuples
69 set => this.Set((int)IniLocatorTupleFields.Key, value); 69 set => this.Set((int)IniLocatorTupleFields.Key, value);
70 } 70 }
71 71
72 public int Field 72 public int? Field
73 { 73 {
74 get => (int)this.Fields[(int)IniLocatorTupleFields.Field]; 74 get => (int?)this.Fields[(int)IniLocatorTupleFields.Field];
75 set => this.Set((int)IniLocatorTupleFields.Field, value); 75 set => this.Set((int)IniLocatorTupleFields.Field, value);
76 } 76 }
77 77
78 public int Type 78 public int? Type
79 { 79 {
80 get => (int)this.Fields[(int)IniLocatorTupleFields.Type]; 80 get => this.Fields[(int)IniLocatorTupleFields.Type].AsNullableNumber();
81 set => this.Set((int)IniLocatorTupleFields.Type, value); 81 set => this.Set((int)IniLocatorTupleFields.Type, value);
82 } 82 }
83 } 83 }