aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Link/WixGroupingOrdering.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Link/WixGroupingOrdering.cs')
-rw-r--r--src/WixToolset.Core/Link/WixGroupingOrdering.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/WixToolset.Core/Link/WixGroupingOrdering.cs b/src/WixToolset.Core/Link/WixGroupingOrdering.cs
index a7013062..a8044a0c 100644
--- a/src/WixToolset.Core/Link/WixGroupingOrdering.cs
+++ b/src/WixToolset.Core/Link/WixGroupingOrdering.cs
@@ -29,10 +29,8 @@ namespace WixToolset.Core.Link
29 /// <summary> 29 /// <summary>
30 /// Creates a WixGroupingOrdering object. 30 /// Creates a WixGroupingOrdering object.
31 /// </summary> 31 /// </summary>
32 /// <param name="output">Output from which to read the group and order information.</param> 32 /// <param name="entrySections">Output from which to read the group and order information.</param>
33 /// <param name="messageHandler">Handler for any error messages.</param> 33 /// <param name="messageHandler">Handler for any error messages.</param>
34 /// <param name="groupTypes">Group types to include.</param>
35 /// <param name="itemTypes">Item types to include.</param>
36 public WixGroupingOrdering(IntermediateSection entrySections, IMessaging messageHandler) 34 public WixGroupingOrdering(IntermediateSection entrySections, IMessaging messageHandler)
37 { 35 {
38 this.EntrySection = entrySections; 36 this.EntrySection = entrySections;
@@ -582,7 +580,7 @@ namespace WixToolset.Core.Link
582 /// <summary> 580 /// <summary>
583 /// Adds an item to the 'after' ordering collection. 581 /// Adds an item to the 'after' ordering collection.
584 /// </summary> 582 /// </summary>
585 /// <param name="item">Items to add.</param> 583 /// <param name="after">Item to add.</param>
586 /// <param name="messageHandler">Message handler in case a circular ordering reference is found.</param> 584 /// <param name="messageHandler">Message handler in case a circular ordering reference is found.</param>
587 public void AddAfter(Item after, IMessaging messageHandler) 585 public void AddAfter(Item after, IMessaging messageHandler)
588 { 586 {