diff options
author | sr55 <[email protected]> | 2015-03-01 17:53:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-03-01 17:53:54 +0000 |
commit | 5cce72f890bc7b6075a55aa4364b8817c22f11c0 (patch) | |
tree | c049480c710828c2e5d6375dfcfa03faa48a5f56 /win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs | |
parent | 6106f068ddc39e4d8aca10f42dc955cfae183360 (diff) |
WinGui: Removing the Isolation code as it's not used, and planned for libhb instead.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6958 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs index 991b2132e..ba6a3a92e 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs @@ -66,7 +66,7 @@ namespace HandBrake.ApplicationServices.Services /// <exception cref="ArgumentNullException">
/// Services are not setup
/// </exception>
- public QueueProcessor(IEncodeServiceWrapper encodeService)
+ public QueueProcessor(IEncode encodeService)
{
this.EncodeService = encodeService;
@@ -143,7 +143,7 @@ namespace HandBrake.ApplicationServices.Services /// <summary>
/// Gets the IEncodeService instance.
/// </summary>
- public IEncodeServiceWrapper EncodeService { get; private set; }
+ public IEncode EncodeService { get; private set; }
/// <summary>
/// Gets a value indicating whether IsProcessing.
|