diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/IniLocatorTuple.cs | 8 |
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 | } |