aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler_UI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Compiler_UI.cs')
-rw-r--r--src/WixToolset.Core/Compiler_UI.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Core/Compiler_UI.cs b/src/WixToolset.Core/Compiler_UI.cs
index 24398895..6b933d09 100644
--- a/src/WixToolset.Core/Compiler_UI.cs
+++ b/src/WixToolset.Core/Compiler_UI.cs
@@ -488,7 +488,7 @@ namespace WixToolset.Core
488 { 488 {
489 var tuple = new BillboardTuple(sourceLineNumbers, id) 489 var tuple = new BillboardTuple(sourceLineNumbers, id)
490 { 490 {
491 Feature_ = feature, 491 FeatureRef = feature,
492 Action = action, 492 Action = action,
493 Ordering = order 493 Ordering = order
494 }; 494 };
@@ -1029,9 +1029,9 @@ namespace WixToolset.Core
1029 SystemModal = systemModal, 1029 SystemModal = systemModal,
1030 TrackDiskSpace = trackDiskSpace, 1030 TrackDiskSpace = trackDiskSpace,
1031 Title = title, 1031 Title = title,
1032 Control_First = firstControl, 1032 FirstControlRef = firstControl,
1033 Control_Default = defaultControl, 1033 DefaultControlRef = defaultControl,
1034 Control_Cancel = cancelControl, 1034 CancelControlRef = cancelControl,
1035 }; 1035 };
1036 1036
1037 this.Core.AddTuple(tuple); 1037 this.Core.AddTuple(tuple);
@@ -1486,7 +1486,7 @@ namespace WixToolset.Core
1486 { 1486 {
1487 var bbTuple = new BBControlTuple(sourceLineNumbers, id) 1487 var bbTuple = new BBControlTuple(sourceLineNumbers, id)
1488 { 1488 {
1489 Billboard_ = dialog, 1489 BillboardRef = dialog,
1490 BBControl = controlId.Id, 1490 BBControl = controlId.Id,
1491 Type = controlType, 1491 Type = controlType,
1492 Attributes = attributes, 1492 Attributes = attributes,
@@ -1515,7 +1515,7 @@ namespace WixToolset.Core
1515 { 1515 {
1516 var controlTuple = new ControlTuple(sourceLineNumbers, id) 1516 var controlTuple = new ControlTuple(sourceLineNumbers, id)
1517 { 1517 {
1518 Dialog_ = dialog, 1518 DialogRef = dialog,
1519 Control = controlId.Id, 1519 Control = controlId.Id,
1520 Type = controlType, 1520 Type = controlType,
1521 Attributes = attributes, 1521 Attributes = attributes,
@@ -1673,8 +1673,8 @@ namespace WixToolset.Core
1673 { 1673 {
1674 var tuple = new ControlEventTuple(sourceLineNumbers) 1674 var tuple = new ControlEventTuple(sourceLineNumbers)
1675 { 1675 {
1676 Dialog_ = dialog, 1676 DialogRef = dialog,
1677 Control_ = control, 1677 ControlRef = control,
1678 Event = controlEvent ?? property, 1678 Event = controlEvent ?? property,
1679 Argument = argument, 1679 Argument = argument,
1680 Condition = condition, 1680 Condition = condition,
@@ -1742,8 +1742,8 @@ namespace WixToolset.Core
1742 { 1742 {
1743 var tuple = new EventMappingTuple(sourceLineNumbers) 1743 var tuple = new EventMappingTuple(sourceLineNumbers)
1744 { 1744 {
1745 Dialog_ = dialog, 1745 DialogRef = dialog,
1746 Control_ = control, 1746 ControlRef = control,
1747 Event = eventMapping, 1747 Event = eventMapping,
1748 Attribute = controlAttribute 1748 Attribute = controlAttribute
1749 }; ; 1749 }; ;