diff options
author | sr55 <[email protected]> | 2021-02-04 20:41:45 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-04 20:41:45 +0000 |
commit | db589c5559f2e556592db10b052ed688fa199b0e (patch) | |
tree | acaf716b8ffd97978575b767569ea506112d1daf /win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs | |
parent | f52375b929185731ee0033cb605e2281c9966d02 (diff) |
WinGui: HandBrake.Interop further API tidyup. Namespace changes. Many "model" objects have moved to interfaces.models to avoid confusion. A number of filter/video enums have moved to HandBrakeWPF as they are not part of the API.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs index ced323b13..286fc9179 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs @@ -17,7 +17,7 @@ namespace HandBrakeWPF.ViewModels using Caliburn.Micro;
using HandBrake.Interop.Interop;
- using HandBrake.Interop.Interop.Model.Encoding;
+ using HandBrake.Interop.Interop.Interfaces.Model.Encoders;
using HandBrake.Interop.Utilities;
using HandBrakeWPF.EventArgs;
|