aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Patch.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-26 13:40:49 -0700
committerRob Mensching <rob@firegiant.com>2019-10-26 13:56:11 -0700
commit6eab6255f832007886c4b01861dc39d5582177ef (patch)
treecb3e11ad38046ed74eede94126c9923e4dfc287b /src/WixToolset.Core.WindowsInstaller/Patch.cs
parentf01d284101e95d490497062c2dc9065423d0cf37 (diff)
downloadwix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz
wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2
wix-6eab6255f832007886c4b01861dc39d5582177ef.zip
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Patch.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Patch.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Patch.cs b/src/WixToolset.Core.WindowsInstaller/Patch.cs
index c1914aca..6549e830 100644
--- a/src/WixToolset.Core.WindowsInstaller/Patch.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Patch.cs
@@ -15,10 +15,10 @@ namespace WixToolset.Data
15 public class Patch 15 public class Patch
16 { 16 {
17 private List<IInspectorExtension> inspectorExtensions; 17 private List<IInspectorExtension> inspectorExtensions;
18 private Output patch; 18 private WindowsInstallerData patch;
19 private TableDefinitionCollection tableDefinitions; 19 private TableDefinitionCollection tableDefinitions;
20 20
21 public Output PatchOutput 21 public WindowsInstallerData PatchOutput
22 { 22 {
23 get { return this.patch; } 23 get { return this.patch; }
24 } 24 }
@@ -40,7 +40,7 @@ namespace WixToolset.Data
40 40
41 public void Load(string patchPath) 41 public void Load(string patchPath)
42 { 42 {
43 this.patch = Output.Load(patchPath, false); 43 this.patch = WindowsInstallerData.Load(patchPath, false);
44 } 44 }
45 45
46 /// <summary> 46 /// <summary>