diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-12 12:42:26 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-13 09:22:27 -0700 |
commit | 404e5661ee971b9b2544185c3a28b24fafc06185 (patch) | |
tree | 52f689d1c85900f90f4685f547aeedf554e3fa7f /src/WixToolset.Core/Compiler_UI.cs | |
parent | 6bd3044f8710c26be93588a1405227fdeb522131 (diff) | |
download | wix-404e5661ee971b9b2544185c3a28b24fafc06185.tar.gz wix-404e5661ee971b9b2544185c3a28b24fafc06185.tar.bz2 wix-404e5661ee971b9b2544185c3a28b24fafc06185.zip |
Implement update control text
Diffstat (limited to 'src/WixToolset.Core/Compiler_UI.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_UI.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_UI.cs b/src/WixToolset.Core/Compiler_UI.cs index 3d554f12..19c2fdcc 100644 --- a/src/WixToolset.Core/Compiler_UI.cs +++ b/src/WixToolset.Core/Compiler_UI.cs | |||
@@ -1495,7 +1495,7 @@ namespace WixToolset.Core | |||
1495 | Sunken = sunken, | 1495 | Sunken = sunken, |
1496 | Visible = !hidden, | 1496 | Visible = !hidden, |
1497 | Text = text, | 1497 | Text = text, |
1498 | SourceFile = sourceFile, | 1498 | SourceFile = String.IsNullOrEmpty(sourceFile) ? null : new IntermediateFieldPathValue { Path = sourceFile } |
1499 | }); | 1499 | }); |
1500 | 1500 | ||
1501 | bbTuple.Set((int)BBControlTupleFields.X, x); | 1501 | bbTuple.Set((int)BBControlTupleFields.X, x); |
@@ -1524,7 +1524,7 @@ namespace WixToolset.Core | |||
1524 | Property = !String.IsNullOrEmpty(property) ? property : checkBoxPropertyRef, | 1524 | Property = !String.IsNullOrEmpty(property) ? property : checkBoxPropertyRef, |
1525 | Text = text, | 1525 | Text = text, |
1526 | Help = (null == tooltip && null == help) ? null : String.Concat(tooltip, "|", help), // Separator is required, even if only one is non-null.}; | 1526 | Help = (null == tooltip && null == help) ? null : String.Concat(tooltip, "|", help), // Separator is required, even if only one is non-null.}; |
1527 | SourceFile = sourceFile | 1527 | SourceFile = String.IsNullOrEmpty(sourceFile) ? null : new IntermediateFieldPathValue { Path = sourceFile } |
1528 | }); | 1528 | }); |
1529 | 1529 | ||
1530 | controlTuple.Set((int)BBControlTupleFields.X, x); | 1530 | controlTuple.Set((int)BBControlTupleFields.X, x); |