diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/EventMappingTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/EventMappingTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/EventMappingTuple.cs b/src/WixToolset.Data/Tuples/EventMappingTuple.cs index b83d5f4e..d172d4ce 100644 --- a/src/WixToolset.Data/Tuples/EventMappingTuple.cs +++ b/src/WixToolset.Data/Tuples/EventMappingTuple.cs | |||
@@ -10,8 +10,8 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.EventMapping, | 10 | TupleDefinitionType.EventMapping, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Dialog_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.DialogRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Control_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.ControlRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Event), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Event), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Attribute), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(EventMappingTupleFields.Attribute), IntermediateFieldType.String), |
17 | }, | 17 | }, |
@@ -23,8 +23,8 @@ namespace WixToolset.Data.Tuples | |||
23 | { | 23 | { |
24 | public enum EventMappingTupleFields | 24 | public enum EventMappingTupleFields |
25 | { | 25 | { |
26 | Dialog_, | 26 | DialogRef, |
27 | Control_, | 27 | ControlRef, |
28 | Event, | 28 | Event, |
29 | Attribute, | 29 | Attribute, |
30 | } | 30 | } |
@@ -41,16 +41,16 @@ namespace WixToolset.Data.Tuples | |||
41 | 41 | ||
42 | public IntermediateField this[EventMappingTupleFields index] => this.Fields[(int)index]; | 42 | public IntermediateField this[EventMappingTupleFields index] => this.Fields[(int)index]; |
43 | 43 | ||
44 | public string Dialog_ | 44 | public string DialogRef |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)EventMappingTupleFields.Dialog_]; | 46 | get => (string)this.Fields[(int)EventMappingTupleFields.DialogRef]; |
47 | set => this.Set((int)EventMappingTupleFields.Dialog_, value); | 47 | set => this.Set((int)EventMappingTupleFields.DialogRef, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public string Control_ | 50 | public string ControlRef |
51 | { | 51 | { |
52 | get => (string)this.Fields[(int)EventMappingTupleFields.Control_]; | 52 | get => (string)this.Fields[(int)EventMappingTupleFields.ControlRef]; |
53 | set => this.Set((int)EventMappingTupleFields.Control_, value); | 53 | set => this.Set((int)EventMappingTupleFields.ControlRef, value); |
54 | } | 54 | } |
55 | 55 | ||
56 | public string Event | 56 | public string Event |