diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-23 16:44:27 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-23 16:52:05 -0700 |
commit | 51441387b09aa6b8c00fbc0d8841118b7fee63d6 (patch) | |
tree | 16b50aebaa124ed4e5da0814c075399035da9875 /src | |
parent | ed0fb39537c0cfb13922537a26f9d895180d42d8 (diff) | |
download | wix-51441387b09aa6b8c00fbc0d8841118b7fee63d6.tar.gz wix-51441387b09aa6b8c00fbc0d8841118b7fee63d6.tar.bz2 wix-51441387b09aa6b8c00fbc0d8841118b7fee63d6.zip |
Fix a couple simple mistakes
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 2 | ||||
-rw-r--r-- | src/WixToolset.Core/Compiler_UI.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 28290569..e2a5721e 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -6345,7 +6345,7 @@ namespace WixToolset.Core | |||
6345 | { | 6345 | { |
6346 | switch (attrib.Name.LocalName) | 6346 | switch (attrib.Name.LocalName) |
6347 | { | 6347 | { |
6348 | case "Cndition": | 6348 | case "Condition": |
6349 | condition = this.Core.GetAttributeValue(sourceLineNumbers, attrib); | 6349 | condition = this.Core.GetAttributeValue(sourceLineNumbers, attrib); |
6350 | break; | 6350 | break; |
6351 | case "Message": | 6351 | case "Message": |
diff --git a/src/WixToolset.Core/Compiler_UI.cs b/src/WixToolset.Core/Compiler_UI.cs index 5066ff1a..9038f727 100644 --- a/src/WixToolset.Core/Compiler_UI.cs +++ b/src/WixToolset.Core/Compiler_UI.cs | |||
@@ -1425,7 +1425,7 @@ namespace WixToolset.Core | |||
1425 | 1425 | ||
1426 | if (!String.IsNullOrEmpty(text) && null != sourceFile) | 1426 | if (!String.IsNullOrEmpty(text) && null != sourceFile) |
1427 | { | 1427 | { |
1428 | this.Core.Write(ErrorMessages.IllegalAttributeWithOtherAttribute(childSourceLineNumbers, child.Name.LocalName, "SourceFile", "Text")); | 1428 | this.Core.Write(ErrorMessages.IllegalAttributeWithOtherAttribute(childSourceLineNumbers, child.Name.LocalName, "SourceFile", "Value")); |
1429 | } | 1429 | } |
1430 | break; | 1430 | break; |
1431 | default: | 1431 | default: |