diff options
author | Scott <[email protected]> | 2015-09-26 21:09:05 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-09-26 21:30:32 +0100 |
commit | c4008d7a492fa08449de6e19414a1acf101e53f5 (patch) | |
tree | 0ee2c53bd8961590f8714b79a5a49e671d4af767 /win/CS/HandBrakeWPF/Services/UserSettingService.cs | |
parent | 1320d77d36f096c7aa5b1697d3aaf9aa35d5e199 (diff) |
App Services Cleanup Contd
Moving Exceptions and more utilities to the GUI project.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/UserSettingService.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UserSettingService.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs index 6c5c6629b..8f0093009 100644 --- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs +++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs @@ -16,10 +16,9 @@ namespace HandBrakeWPF.Services using System.Reflection;
using System.Xml.Serialization;
- using HandBrake.ApplicationServices.Exceptions;
-
using HandBrakeWPF.Services.Interfaces;
+ using GeneralApplicationException = HandBrakeWPF.Exceptions.GeneralApplicationException;
using SettingChangedEventArgs = HandBrakeWPF.EventArgs.SettingChangedEventArgs;
/// <summary>
|