diff options
author | sr55 <[email protected]> | 2019-05-10 22:37:25 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-05-10 22:37:25 +0100 |
commit | d66c23d4a81c6165965114e855a4f361c9481649 (patch) | |
tree | 650f51b9ef6308582394f6316ecff58f7776bf6f /win/CS/HandBrakeWPF/Startup | |
parent | 38af1c5f6595fd7ab01f1672197aabe9f87aa5b4 (diff) |
WinGui: Switch the GUI over to using JSON for the queue. (Note, this is not the same format as the CLI and thus cannot be imported. This may happen in the future)
Please finish existing queue before installing new version.
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs index 458c071c3..4f1f6c159 100644 --- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs +++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs @@ -60,7 +60,7 @@ namespace HandBrakeWPF.Startup this.container.Singleton<IPrePostActionService, PrePostActionService>();
this.container.Singleton<IUserSettingService, UserSettingService>();
this.container.Singleton<IPresetService, PresetService>();
- this.container.Singleton<IQueueProcessor, QueueProcessor>();
+ this.container.Singleton<IQueueService, QueueService>();
// Commands
|