diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/DialogTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/DialogTuple.cs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/WixToolset.Data/Tuples/DialogTuple.cs b/src/WixToolset.Data/Tuples/DialogTuple.cs index bc803d68..492d2fb1 100644 --- a/src/WixToolset.Data/Tuples/DialogTuple.cs +++ b/src/WixToolset.Data/Tuples/DialogTuple.cs | |||
@@ -26,9 +26,9 @@ namespace WixToolset.Data | |||
26 | new IntermediateFieldDefinition(nameof(DialogTupleFields.SystemModal), IntermediateFieldType.Bool), | 26 | new IntermediateFieldDefinition(nameof(DialogTupleFields.SystemModal), IntermediateFieldType.Bool), |
27 | new IntermediateFieldDefinition(nameof(DialogTupleFields.TrackDiskSpace), IntermediateFieldType.Bool), | 27 | new IntermediateFieldDefinition(nameof(DialogTupleFields.TrackDiskSpace), IntermediateFieldType.Bool), |
28 | new IntermediateFieldDefinition(nameof(DialogTupleFields.Title), IntermediateFieldType.String), | 28 | new IntermediateFieldDefinition(nameof(DialogTupleFields.Title), IntermediateFieldType.String), |
29 | new IntermediateFieldDefinition(nameof(DialogTupleFields.Control_First), IntermediateFieldType.String), | 29 | new IntermediateFieldDefinition(nameof(DialogTupleFields.FirstControlRef), IntermediateFieldType.String), |
30 | new IntermediateFieldDefinition(nameof(DialogTupleFields.Control_Default), IntermediateFieldType.String), | 30 | new IntermediateFieldDefinition(nameof(DialogTupleFields.DefaultControlRef), IntermediateFieldType.String), |
31 | new IntermediateFieldDefinition(nameof(DialogTupleFields.Control_Cancel), IntermediateFieldType.String), | 31 | new IntermediateFieldDefinition(nameof(DialogTupleFields.CancelControlRef), IntermediateFieldType.String), |
32 | }, | 32 | }, |
33 | typeof(DialogTuple)); | 33 | typeof(DialogTuple)); |
34 | } | 34 | } |
@@ -54,9 +54,9 @@ namespace WixToolset.Data.Tuples | |||
54 | SystemModal, | 54 | SystemModal, |
55 | TrackDiskSpace, | 55 | TrackDiskSpace, |
56 | Title, | 56 | Title, |
57 | Control_First, | 57 | FirstControlRef, |
58 | Control_Default, | 58 | DefaultControlRef, |
59 | Control_Cancel, | 59 | CancelControlRef, |
60 | } | 60 | } |
61 | 61 | ||
62 | public class DialogTuple : IntermediateTuple | 62 | public class DialogTuple : IntermediateTuple |
@@ -167,22 +167,22 @@ namespace WixToolset.Data.Tuples | |||
167 | set => this.Set((int)DialogTupleFields.Title, value); | 167 | set => this.Set((int)DialogTupleFields.Title, value); |
168 | } | 168 | } |
169 | 169 | ||
170 | public string Control_First | 170 | public string FirstControlRef |
171 | { | 171 | { |
172 | get => (string)this.Fields[(int)DialogTupleFields.Control_First]; | 172 | get => (string)this.Fields[(int)DialogTupleFields.FirstControlRef]; |
173 | set => this.Set((int)DialogTupleFields.Control_First, value); | 173 | set => this.Set((int)DialogTupleFields.FirstControlRef, value); |
174 | } | 174 | } |
175 | 175 | ||
176 | public string Control_Default | 176 | public string DefaultControlRef |
177 | { | 177 | { |
178 | get => (string)this.Fields[(int)DialogTupleFields.Control_Default]; | 178 | get => (string)this.Fields[(int)DialogTupleFields.DefaultControlRef]; |
179 | set => this.Set((int)DialogTupleFields.Control_Default, value); | 179 | set => this.Set((int)DialogTupleFields.DefaultControlRef, value); |
180 | } | 180 | } |
181 | 181 | ||
182 | public string Control_Cancel | 182 | public string CancelControlRef |
183 | { | 183 | { |
184 | get => (string)this.Fields[(int)DialogTupleFields.Control_Cancel]; | 184 | get => (string)this.Fields[(int)DialogTupleFields.CancelControlRef]; |
185 | set => this.Set((int)DialogTupleFields.Control_Cancel, value); | 185 | set => this.Set((int)DialogTupleFields.CancelControlRef, value); |
186 | } | 186 | } |
187 | } | 187 | } |
188 | } \ No newline at end of file | 188 | } \ No newline at end of file |