diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ControlEventTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ControlEventTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/ControlEventTuple.cs b/src/WixToolset.Data/Tuples/ControlEventTuple.cs index 96d0bcdc..9c460353 100644 --- a/src/WixToolset.Data/Tuples/ControlEventTuple.cs +++ b/src/WixToolset.Data/Tuples/ControlEventTuple.cs | |||
| @@ -75,9 +75,9 @@ namespace WixToolset.Data.Tuples | |||
| 75 | set => this.Set((int)ControlEventTupleFields.Condition, value); | 75 | set => this.Set((int)ControlEventTupleFields.Condition, value); |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | public int Ordering | 78 | public int? Ordering |
| 79 | { | 79 | { |
| 80 | get => (int)this.Fields[(int)ControlEventTupleFields.Ordering]; | 80 | get => (int?)this.Fields[(int)ControlEventTupleFields.Ordering]; |
| 81 | set => this.Set((int)ControlEventTupleFields.Ordering, value); | 81 | set => this.Set((int)ControlEventTupleFields.Ordering, value); |
| 82 | } | 82 | } |
| 83 | } | 83 | } |
