diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-27 15:00:38 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 15:05:55 -0700 |
| commit | c57f5bc9caad2adf1b0fe8fedc1003e49e272080 (patch) | |
| tree | 849189fb1920619007d03a53d49d0a7e03b03066 /src/wixext/SqlExtensionData.cs | |
| parent | bbbe36aed1ac5a1b27314a9f9658f49ef08fbb41 (diff) | |
| download | wix-c57f5bc9caad2adf1b0fe8fedc1003e49e272080.tar.gz wix-c57f5bc9caad2adf1b0fe8fedc1003e49e272080.tar.bz2 wix-c57f5bc9caad2adf1b0fe8fedc1003e49e272080.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/wixext/SqlExtensionData.cs')
| -rw-r--r-- | src/wixext/SqlExtensionData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/SqlExtensionData.cs b/src/wixext/SqlExtensionData.cs index e27b698f..60de94fe 100644 --- a/src/wixext/SqlExtensionData.cs +++ b/src/wixext/SqlExtensionData.cs | |||
| @@ -16,15 +16,15 @@ namespace WixToolset.Sql | |||
| 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 = SqlTupleDefinitions.ByName(name); | 21 | symbolDefinition = SqlSymbolDefinitions.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(SqlExtensionData).Assembly, "WixToolset.Sql.sql.wixlib", tupleDefinitions); | 27 | return Intermediate.Load(typeof(SqlExtensionData).Assembly, "WixToolset.Sql.sql.wixlib", symbolDefinitions); |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | } | 30 | } |
