From b3c15a3dd5bb2747deb59fe1d6a7cc31d2990f62 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Mon, 28 Jun 2021 19:03:06 -0400 Subject: Fix typos and whitespace. --- src/wix/WixToolset.Core/Compiler.cs | 2 +- src/wix/WixToolset.Core/Compiler_UI.cs | 8 ++++---- src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/wix/WixToolset.Core/Compiler.cs b/src/wix/WixToolset.Core/Compiler.cs index c39bec70..301a4f6a 100644 --- a/src/wix/WixToolset.Core/Compiler.cs +++ b/src/wix/WixToolset.Core/Compiler.cs @@ -2094,7 +2094,7 @@ namespace WixToolset.Core /// Parses a component element. /// /// Element to parse. - /// Type of component's complex reference parent. Will be Uknown if there is no parent. + /// Type of component's complex reference parent. Will be Unknown if there is no parent. /// Optional identifier for component's primary parent. /// Optional string for component's parent's language. /// Optional disk id inherited from parent directory. diff --git a/src/wix/WixToolset.Core/Compiler_UI.cs b/src/wix/WixToolset.Core/Compiler_UI.cs index d712ec91..5661d101 100644 --- a/src/wix/WixToolset.Core/Compiler_UI.cs +++ b/src/wix/WixToolset.Core/Compiler_UI.cs @@ -1534,10 +1534,10 @@ namespace WixToolset.Core SourceFile = String.IsNullOrEmpty(sourceFile) ? null : new IntermediateFieldPathValue { Path = sourceFile } }); - controlSymbol.Set((int)BBControlSymbolFields.X, x); - controlSymbol.Set((int)BBControlSymbolFields.Y, y); - controlSymbol.Set((int)BBControlSymbolFields.Width, width); - controlSymbol.Set((int)BBControlSymbolFields.Height, height); + controlSymbol.Set((int)ControlSymbolFields.X, x); + controlSymbol.Set((int)ControlSymbolFields.Y, y); + controlSymbol.Set((int)ControlSymbolFields.Width, width); + controlSymbol.Set((int)ControlSymbolFields.Height, height); symbol = controlSymbol; } diff --git a/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index c1368190..1a678b0d 100644 --- a/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs @@ -38,7 +38,6 @@ namespace WixToolset.Core.ExtensibilityServices public void CreateComplexReference(IntermediateSection section, SourceLineNumber sourceLineNumbers, ComplexReferenceParentType parentType, string parentId, string parentLanguage, ComplexReferenceChildType childType, string childId, bool isPrimary) { - section.AddSymbol(new WixComplexReferenceSymbol(sourceLineNumbers) { Parent = parentId, -- cgit v1.2.3-55-g6feb