diff options
author | sr55 <[email protected]> | 2010-06-07 18:51:59 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-07 18:51:59 +0000 |
commit | e18ddd6e3c103f936044cf3df3c5a94f30821bb2 (patch) | |
tree | 9b8fd5e8c36da5b4b8dcc7a83860ccba698a87b4 /win/C#/frmActivityWindow.cs | |
parent | 66cc9a71a58bc66a65b4f92bb736e7d1ca9313db (diff) |
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
Diffstat (limited to 'win/C#/frmActivityWindow.cs')
-rw-r--r-- | win/C#/frmActivityWindow.cs | 8 |
1 files changed, 4 insertions, 4 deletions
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 /// <summary>
/// The Encode Object
/// </summary>
- private Encode encode;
+ private IQueue encode;
/// <summary>
/// The Scan Object
/// </summary>
- private ScanService scan;
+ private IScan scan;
/// <summary>
/// The Type of log that the window is currently dealing with
@@ -62,7 +62,7 @@ namespace Handbrake /// <param name="scan">
/// The scan.
/// </param>
- public frmActivityWindow(Encode encode, ScanService scan)
+ public frmActivityWindow(IQueue encode, IScan scan)
{
InitializeComponent();
|