diff options
Diffstat (limited to 'src/wixext/BalExtensionData.cs')
-rw-r--r-- | src/wixext/BalExtensionData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/BalExtensionData.cs b/src/wixext/BalExtensionData.cs index 46152b53..55daf005 100644 --- a/src/wixext/BalExtensionData.cs +++ b/src/wixext/BalExtensionData.cs | |||
@@ -16,15 +16,15 @@ namespace WixToolset.Bal | |||
16 | /// <value>The default culture.</value> | 16 | /// <value>The default culture.</value> |
17 | public override string DefaultCulture => "en-US"; | 17 | public override string DefaultCulture => "en-US"; |
18 | 18 | ||
19 | public override bool TryGetTupleDefinitionByName(string name, out IntermediateTupleDefinition tupleDefinition) | 19 | public override bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition) |
20 | { | 20 | { |
21 | tupleDefinition = BalTupleDefinitions.ByName(name); | 21 | symbolDefinition = BalSymbolDefinitions.ByName(name); |
22 | return tupleDefinition != null; | 22 | return symbolDefinition != null; |
23 | } | 23 | } |
24 | 24 | ||
25 | public override Intermediate GetLibrary(ITupleDefinitionCreator tupleDefinitions) | 25 | public override Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions) |
26 | { | 26 | { |
27 | return Intermediate.Load(typeof(BalExtensionData).Assembly, "WixToolset.Bal.bal.wixlib", tupleDefinitions); | 27 | return Intermediate.Load(typeof(BalExtensionData).Assembly, "WixToolset.Bal.bal.wixlib", symbolDefinitions); |
28 | } | 28 | } |
29 | } | 29 | } |
30 | } | 30 | } |