diff options
author | sr55 <[email protected]> | 2014-11-23 21:32:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-11-23 21:32:18 +0000 |
commit | c95258591c92e571c25db7a611ae9f3a942b74c2 (patch) | |
tree | 817be812886320a3668a2d2c7611f259ce465142 /win/CS/HandBrakeWPF/ViewModels/Interfaces | |
parent | c5a04724e91824426cd12802a4ef270d36f2081b (diff) |
WinGui: Move the preset model object into the presets package.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6547 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs index ac7bf0106..283b828c9 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs @@ -11,7 +11,7 @@ namespace HandBrakeWPF.ViewModels.Interfaces {
using HandBrake.ApplicationServices.Model;
- using HandBrakeWPF.Model.Preset;
+ using HandBrakeWPF.Services.Presets.Model;
/// <summary>
/// The Main Window View Model
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs index 1cdc634a9..ff0b7313a 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs @@ -12,7 +12,7 @@ namespace HandBrakeWPF.ViewModels.Interfaces using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
- using HandBrakeWPF.Model.Preset;
+ using HandBrakeWPF.Services.Presets.Model;
/// <summary>
/// Common interface for all the main tab panels
|