diff options
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); |
