aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ControlEventTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 16:39:11 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 20:28:02 +1000
commitddb4161e3d9d13703b0df2915e68b5b4ef47e71b (patch)
treeb2a6033b3875662f6dee47295b15ceb4463d23a9 /src/WixToolset.Data/Tuples/ControlEventTuple.cs
parentd0d447ad64afdd5956856c4c6b6599f69a522d6b (diff)
downloadwix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.gz
wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.tar.bz2
wix-ddb4161e3d9d13703b0df2915e68b5b4ef47e71b.zip
Try to be more accurate in the tuples with nullable fields.
Diffstat (limited to 'src/WixToolset.Data/Tuples/ControlEventTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ControlEventTuple.cs4
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 }