diff options
author | sr55 <[email protected]> | 2013-09-21 16:25:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-21 16:25:39 +0000 |
commit | bb3aae9dd06271ab7b18a2d55fec14c97b76e9b0 (patch) | |
tree | b18340eaf83379f35ec9bc1f6d611364cfa316b2 /win/CS/HandBrakeWPF/Commands | |
parent | 173b4f70468b2a762c180596fa1b313fd319a463 (diff) |
WinGui: Remove the scan service wrapper as it's no longer needed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5789 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands')
-rw-r--r-- | win/CS/HandBrakeWPF/Commands/CancelScanCommand.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/CancelScanCommand.cs b/win/CS/HandBrakeWPF/Commands/CancelScanCommand.cs index e9ec9966a..b00061068 100644 --- a/win/CS/HandBrakeWPF/Commands/CancelScanCommand.cs +++ b/win/CS/HandBrakeWPF/Commands/CancelScanCommand.cs @@ -22,7 +22,7 @@ namespace HandBrakeWPF.Commands /// <summary>
/// The scan service wrapper.
/// </summary>
- private readonly IScanServiceWrapper scanServiceWrapper;
+ private readonly IScan scanServiceWrapper;
/// <summary>
/// Initializes a new instance of the <see cref="CancelScanCommand"/> class.
@@ -30,7 +30,7 @@ namespace HandBrakeWPF.Commands /// <param name="ssw">
/// The scan service wrapper.
/// </param>
- public CancelScanCommand(IScanServiceWrapper ssw)
+ public CancelScanCommand(IScan ssw)
{
this.scanServiceWrapper = ssw;
this.scanServiceWrapper.ScanStared += this.ScanServiceWrapperScanStared;
|