diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ClassTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ClassTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/ClassTuple.cs b/src/WixToolset.Data/Tuples/ClassTuple.cs index 5e40fe35..a5ff89e8 100644 --- a/src/WixToolset.Data/Tuples/ClassTuple.cs +++ b/src/WixToolset.Data/Tuples/ClassTuple.cs | |||
@@ -107,9 +107,9 @@ namespace WixToolset.Data.Tuples | |||
107 | set => this.Set((int)ClassTupleFields.IconRef, value); | 107 | set => this.Set((int)ClassTupleFields.IconRef, value); |
108 | } | 108 | } |
109 | 109 | ||
110 | public int IconIndex | 110 | public int? IconIndex |
111 | { | 111 | { |
112 | get => (int)this.Fields[(int)ClassTupleFields.IconIndex]; | 112 | get => (int?)this.Fields[(int)ClassTupleFields.IconIndex]; |
113 | set => this.Set((int)ClassTupleFields.IconIndex, value); | 113 | set => this.Set((int)ClassTupleFields.IconIndex, value); |
114 | } | 114 | } |
115 | 115 | ||