diff options
author | sr55 <[email protected]> | 2012-07-07 15:16:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-07-07 15:16:22 +0000 |
commit | 563ff8d014bcf1a65e5185679215e0ec26f7e9f0 (patch) | |
tree | f6552556ca51b56a44641e5fb32cc551af02e35c /win/CS/HandBrakeWPF | |
parent | 453619f81000de7b2622ab0403f880f6dd3db4d0 (diff) |
WinGui: Fixes to allow for multi-instance to work again.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4818 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 123e32fc0..44dc15eff 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -188,7 +188,7 @@ namespace HandBrakeWPF.ViewModels this.shellViewModel = shellViewModel;
this.updateService = updateService;
this.userSettingService = userSettingService;
- this.queueProcessor = IoC.Get<IQueueProcessor>(); // TODO Instance ID!
+ this.queueProcessor = IoC.Get<IQueueProcessor>();
// Setup Properties
this.WindowTitle = "HandBrake";
|