From e18ddd6e3c103f936044cf3df3c5a94f30821bb2 Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 7 Jun 2010 18:51:59 +0000 Subject: WinGui: - Created interfaces for the Scan, Queue and Encode Services. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3367 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/frmActivityWindow.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'win/C#/frmActivityWindow.cs') diff --git a/win/C#/frmActivityWindow.cs b/win/C#/frmActivityWindow.cs index b979e4b17..d890a7834 100644 --- a/win/C#/frmActivityWindow.cs +++ b/win/C#/frmActivityWindow.cs @@ -14,7 +14,7 @@ namespace Handbrake using System.Windows.Forms; using Functions; - using HandBrake.ApplicationServices.Services; + using HandBrake.ApplicationServices.Services.Interfaces; using Model; using Timer = System.Threading.Timer; @@ -39,12 +39,12 @@ namespace Handbrake /// /// The Encode Object /// - private Encode encode; + private IQueue encode; /// /// The Scan Object /// - private ScanService scan; + private IScan scan; /// /// The Type of log that the window is currently dealing with @@ -62,7 +62,7 @@ namespace Handbrake /// /// The scan. /// - public frmActivityWindow(Encode encode, ScanService scan) + public frmActivityWindow(IQueue encode, IScan scan) { InitializeComponent(); -- cgit v1.2.3