diff options
Diffstat (limited to 'src/WixToolset.Core/LocalizationParser.cs')
-rw-r--r-- | src/WixToolset.Core/LocalizationParser.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/WixToolset.Core/LocalizationParser.cs b/src/WixToolset.Core/LocalizationParser.cs index 3b66b707..a0cf38a9 100644 --- a/src/WixToolset.Core/LocalizationParser.cs +++ b/src/WixToolset.Core/LocalizationParser.cs | |||
@@ -63,6 +63,7 @@ namespace WixToolset.Core | |||
63 | /// <summary> | 63 | /// <summary> |
64 | /// Adds a WixVariableRow to a dictionary while performing the expected override checks. | 64 | /// Adds a WixVariableRow to a dictionary while performing the expected override checks. |
65 | /// </summary> | 65 | /// </summary> |
66 | /// <param name="messaging"></param> | ||
66 | /// <param name="variables">Dictionary of variable rows.</param> | 67 | /// <param name="variables">Dictionary of variable rows.</param> |
67 | /// <param name="wixVariableRow">Row to add to the variables dictionary.</param> | 68 | /// <param name="wixVariableRow">Row to add to the variables dictionary.</param> |
68 | private static void AddWixVariable(IMessaging messaging, IDictionary<string, BindVariable> variables, BindVariable wixVariableRow) | 69 | private static void AddWixVariable(IMessaging messaging, IDictionary<string, BindVariable> variables, BindVariable wixVariableRow) |
@@ -80,6 +81,7 @@ namespace WixToolset.Core | |||
80 | /// <summary> | 81 | /// <summary> |
81 | /// Parses the WixLocalization element. | 82 | /// Parses the WixLocalization element. |
82 | /// </summary> | 83 | /// </summary> |
84 | /// <param name="messaging"></param> | ||
83 | /// <param name="node">Element to parse.</param> | 85 | /// <param name="node">Element to parse.</param> |
84 | private static Localization ParseWixLocalizationElement(IMessaging messaging, XElement node) | 86 | private static Localization ParseWixLocalizationElement(IMessaging messaging, XElement node) |
85 | { | 87 | { |
@@ -147,7 +149,9 @@ namespace WixToolset.Core | |||
147 | /// <summary> | 149 | /// <summary> |
148 | /// Parse a localization string into a WixVariableRow. | 150 | /// Parse a localization string into a WixVariableRow. |
149 | /// </summary> | 151 | /// </summary> |
152 | /// <param name="messaging"></param> | ||
150 | /// <param name="node">Element to parse.</param> | 153 | /// <param name="node">Element to parse.</param> |
154 | /// <param name="variables"></param> | ||
151 | private static void ParseString(IMessaging messaging, XElement node, IDictionary<string, BindVariable> variables) | 155 | private static void ParseString(IMessaging messaging, XElement node, IDictionary<string, BindVariable> variables) |
152 | { | 156 | { |
153 | string id = null; | 157 | string id = null; |
@@ -208,6 +212,7 @@ namespace WixToolset.Core | |||
208 | /// <summary> | 212 | /// <summary> |
209 | /// Parse a localized control. | 213 | /// Parse a localized control. |
210 | /// </summary> | 214 | /// </summary> |
215 | /// <param name="messaging"></param> | ||
211 | /// <param name="node">Element to parse.</param> | 216 | /// <param name="node">Element to parse.</param> |
212 | /// <param name="localizedControls">Dictionary of localized controls.</param> | 217 | /// <param name="localizedControls">Dictionary of localized controls.</param> |
213 | private static void ParseUI(IMessaging messaging, XElement node, IDictionary<string, LocalizedControl> localizedControls) | 218 | private static void ParseUI(IMessaging messaging, XElement node, IDictionary<string, LocalizedControl> localizedControls) |