aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Patch.cs
diff options
context:
space:
mode:
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>