summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Services/ScanService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services/ScanService.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Services/ScanService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/ScanService.cs b/win/C#/HandBrake.ApplicationServices/Services/ScanService.cs
index 9b85740cd..2529f528b 100644
--- a/win/C#/HandBrake.ApplicationServices/Services/ScanService.cs
+++ b/win/C#/HandBrake.ApplicationServices/Services/ScanService.cs
@@ -86,7 +86,7 @@ namespace HandBrake.ApplicationServices.Services
/// <summary>
/// Gets the Souce Data.
/// </summary>
- public DVD SouceData { get; private set; }
+ public Source SouceData { get; private set; }
/// <summary>
/// Gets ActivityLog.
@@ -227,7 +227,7 @@ namespace HandBrake.ApplicationServices.Services
this.readData = new Parser(this.hbProc.StandardError.BaseStream);
this.readData.OnScanProgress += this.OnScanProgress;
- this.SouceData = DVD.Parse(this.readData);
+ this.SouceData = Source.Parse(this.readData);
// Write the Buffer out to file.
using (StreamWriter scanLog = new StreamWriter(dvdInfoPath))