diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/ComPlusInterfacePropertyTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/ComPlusInterfacePropertyTuple.cs b/src/wixext/Tuples/ComPlusInterfacePropertyTuple.cs index 94f12914..699c9597 100644 --- a/src/wixext/Tuples/ComPlusInterfacePropertyTuple.cs +++ b/src/wixext/Tuples/ComPlusInterfacePropertyTuple.cs | |||
@@ -11,7 +11,7 @@ namespace WixToolset.ComPlus | |||
11 | ComPlusTupleDefinitionType.ComPlusInterfaceProperty.ToString(), | 11 | ComPlusTupleDefinitionType.ComPlusInterfaceProperty.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.Interface_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.InterfaceRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.Name), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.Name), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.Value), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusInterfacePropertyTupleFields.Value), IntermediateFieldType.String), |
17 | }, | 17 | }, |
@@ -25,7 +25,7 @@ namespace WixToolset.ComPlus.Tuples | |||
25 | 25 | ||
26 | public enum ComPlusInterfacePropertyTupleFields | 26 | public enum ComPlusInterfacePropertyTupleFields |
27 | { | 27 | { |
28 | Interface_, | 28 | InterfaceRef, |
29 | Name, | 29 | Name, |
30 | Value, | 30 | Value, |
31 | } | 31 | } |
@@ -42,10 +42,10 @@ namespace WixToolset.ComPlus.Tuples | |||
42 | 42 | ||
43 | public IntermediateField this[ComPlusInterfacePropertyTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusInterfacePropertyTupleFields index] => this.Fields[(int)index]; |
44 | 44 | ||
45 | public string Interface_ | 45 | public string InterfaceRef |
46 | { | 46 | { |
47 | get => this.Fields[(int)ComPlusInterfacePropertyTupleFields.Interface_].AsString(); | 47 | get => this.Fields[(int)ComPlusInterfacePropertyTupleFields.InterfaceRef].AsString(); |
48 | set => this.Set((int)ComPlusInterfacePropertyTupleFields.Interface_, value); | 48 | set => this.Set((int)ComPlusInterfacePropertyTupleFields.InterfaceRef, value); |
49 | } | 49 | } |
50 | 50 | ||
51 | public string Name | 51 | public string Name |