diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-22 14:45:33 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 15:43:40 -0700 |
| commit | b36433623fcac28cf620868430d49bc36fca2963 (patch) | |
| tree | 08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/ControlTuple.cs | |
| parent | 109ee5a02f9cec4775697b43655674fc70f4127a (diff) | |
| download | wix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2 wix-b36433623fcac28cf620868430d49bc36fca2963.zip | |
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/WixToolset.Data/Tuples/ControlTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ControlTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/ControlTuple.cs b/src/WixToolset.Data/Tuples/ControlTuple.cs index d08d9311..f0fd92c1 100644 --- a/src/WixToolset.Data/Tuples/ControlTuple.cs +++ b/src/WixToolset.Data/Tuples/ControlTuple.cs | |||
| @@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.Control, | 10 | TupleDefinitionType.Control, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Dialog_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ControlTupleFields.DialogRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Control), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Control), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Type), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Type), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(ControlTupleFields.X), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(ControlTupleFields.X), IntermediateFieldType.Number), |
| @@ -28,7 +28,7 @@ namespace WixToolset.Data | |||
| 28 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Visible), IntermediateFieldType.Bool), | 28 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Visible), IntermediateFieldType.Bool), |
| 29 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Property), IntermediateFieldType.String), | 29 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Property), IntermediateFieldType.String), |
| 30 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Text), IntermediateFieldType.String), | 30 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Text), IntermediateFieldType.String), |
| 31 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Control_Next), IntermediateFieldType.String), | 31 | new IntermediateFieldDefinition(nameof(ControlTupleFields.NextControlRef), IntermediateFieldType.String), |
| 32 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Help), IntermediateFieldType.String), | 32 | new IntermediateFieldDefinition(nameof(ControlTupleFields.Help), IntermediateFieldType.String), |
| 33 | new IntermediateFieldDefinition(nameof(ControlTupleFields.TrackDiskSpace), IntermediateFieldType.Bool), | 33 | new IntermediateFieldDefinition(nameof(ControlTupleFields.TrackDiskSpace), IntermediateFieldType.Bool), |
| 34 | new IntermediateFieldDefinition(nameof(ControlTupleFields.SourceFile), IntermediateFieldType.Path), | 34 | new IntermediateFieldDefinition(nameof(ControlTupleFields.SourceFile), IntermediateFieldType.Path), |
| @@ -41,7 +41,7 @@ namespace WixToolset.Data.Tuples | |||
| 41 | { | 41 | { |
| 42 | public enum ControlTupleFields | 42 | public enum ControlTupleFields |
| 43 | { | 43 | { |
| 44 | Dialog_, | 44 | DialogRef, |
| 45 | Control, | 45 | Control, |
| 46 | Type, | 46 | Type, |
| 47 | X, | 47 | X, |
| @@ -59,7 +59,7 @@ namespace WixToolset.Data.Tuples | |||
| 59 | Visible, | 59 | Visible, |
| 60 | Property, | 60 | Property, |
| 61 | Text, | 61 | Text, |
| 62 | Control_Next, | 62 | NextControlRef, |
| 63 | Help, | 63 | Help, |
| 64 | TrackDiskSpace, | 64 | TrackDiskSpace, |
| 65 | SourceFile, | 65 | SourceFile, |
| @@ -77,10 +77,10 @@ namespace WixToolset.Data.Tuples | |||
| 77 | 77 | ||
| 78 | public IntermediateField this[ControlTupleFields index] => this.Fields[(int)index]; | 78 | public IntermediateField this[ControlTupleFields index] => this.Fields[(int)index]; |
| 79 | 79 | ||
| 80 | public string Dialog_ | 80 | public string DialogRef |
| 81 | { | 81 | { |
| 82 | get => (string)this.Fields[(int)ControlTupleFields.Dialog_]; | 82 | get => (string)this.Fields[(int)ControlTupleFields.DialogRef]; |
| 83 | set => this.Set((int)ControlTupleFields.Dialog_, value); | 83 | set => this.Set((int)ControlTupleFields.DialogRef, value); |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | public string Control | 86 | public string Control |
| @@ -276,10 +276,10 @@ namespace WixToolset.Data.Tuples | |||
| 276 | set => this.Set((int)ControlTupleFields.Text, value); | 276 | set => this.Set((int)ControlTupleFields.Text, value); |
| 277 | } | 277 | } |
| 278 | 278 | ||
| 279 | public string Control_Next | 279 | public string NextControlRef |
| 280 | { | 280 | { |
| 281 | get => (string)this.Fields[(int)ControlTupleFields.Control_Next]; | 281 | get => (string)this.Fields[(int)ControlTupleFields.NextControlRef]; |
| 282 | set => this.Set((int)ControlTupleFields.Control_Next, value); | 282 | set => this.Set((int)ControlTupleFields.NextControlRef, value); |
| 283 | } | 283 | } |
| 284 | 284 | ||
| 285 | public string Help | 285 | public string Help |
