diff options
author | sr55 <[email protected]> | 2021-02-20 15:48:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-20 15:48:07 +0000 |
commit | 88295ef1a5188e18f29042f7cba0efb509209a80 (patch) | |
tree | 2afb235ca856e0912d97307c2ab1fb23034099f3 | |
parent | c244815a06dedf33b1f5842b1c15522649d8311d (diff) |
WinGui: Fixing a namspace.
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/HandBrakeVersionHelper.cs | 4 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/App.xaml.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Helpers/QueueRecoveryHelper.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/QueueService.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UserSettingService.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Utilities/HandBrakeApp.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 1 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs | 4 |
10 files changed, 9 insertions, 8 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/HandBrakeVersionHelper.cs b/win/CS/HandBrake.Interop/Interop/HandBrakeVersionHelper.cs index 6d40ddf04..89c375190 100644 --- a/win/CS/HandBrake.Interop/Interop/HandBrakeVersionHelper.cs +++ b/win/CS/HandBrake.Interop/Interop/HandBrakeVersionHelper.cs @@ -1,5 +1,5 @@ // -------------------------------------------------------------------------------------------------------------------- -// <copyright file="VersionHelper.cs" company="HandBrake Project (https://handbrake.fr)"> +// <copyright file="HandBrakeVersionHelper.cs" company="HandBrake Project (https://handbrake.fr)"> // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // </copyright> // <summary> @@ -7,7 +7,7 @@ // </summary> // -------------------------------------------------------------------------------------------------------------------- -namespace HandBrake.Interop.Utilities +namespace HandBrake.Interop.Interop { using System; using System.Runtime.InteropServices; diff --git a/win/CS/HandBrakeWPF/App.xaml.cs b/win/CS/HandBrakeWPF/App.xaml.cs index 2c4a4578e..04aacf2b9 100644 --- a/win/CS/HandBrakeWPF/App.xaml.cs +++ b/win/CS/HandBrakeWPF/App.xaml.cs @@ -30,8 +30,6 @@ namespace HandBrakeWPF using HandBrakeWPF.ViewModels;
using HandBrakeWPF.ViewModels.Interfaces;
- using Microsoft.Win32;
-
using GeneralApplicationException = Exceptions.GeneralApplicationException;
/// <summary>
diff --git a/win/CS/HandBrakeWPF/Helpers/QueueRecoveryHelper.cs b/win/CS/HandBrakeWPF/Helpers/QueueRecoveryHelper.cs index df67625a8..19c656656 100644 --- a/win/CS/HandBrakeWPF/Helpers/QueueRecoveryHelper.cs +++ b/win/CS/HandBrakeWPF/Helpers/QueueRecoveryHelper.cs @@ -18,6 +18,7 @@ namespace HandBrakeWPF.Helpers using System.Text.RegularExpressions;
using System.Windows;
+ using HandBrake.Interop.Interop;
using HandBrake.Interop.Utilities;
using HandBrakeWPF.Services.Interfaces;
diff --git a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs index 07a45aa51..5eec2d001 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs @@ -18,6 +18,7 @@ namespace HandBrakeWPF.Services.Queue using System.Timers; using System.Windows; + using HandBrake.Interop.Interop; using HandBrake.Interop.Interop.Interfaces.Model; using HandBrake.Interop.Interop.Json.Queue; using HandBrake.Interop.Utilities; diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs index 85de0f018..70280cd0a 100644 --- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs +++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs @@ -15,6 +15,7 @@ namespace HandBrakeWPF.Services using System.IO;
using System.Linq;
+ using HandBrake.Interop.Interop;
using HandBrake.Interop.Interop.Interfaces.Model.Picture;
using HandBrake.Interop.Utilities;
diff --git a/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs b/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs index 0704b2444..6e70fceae 100644 --- a/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs +++ b/win/CS/HandBrakeWPF/Utilities/GeneralUtilities.cs @@ -17,6 +17,7 @@ namespace HandBrakeWPF.Utilities using System.Text; using System.Windows.Forms; + using HandBrake.Interop.Interop; using HandBrake.Interop.Utilities; /// <summary> diff --git a/win/CS/HandBrakeWPF/Utilities/HandBrakeApp.cs b/win/CS/HandBrakeWPF/Utilities/HandBrakeApp.cs index 528b17962..91905f68f 100644 --- a/win/CS/HandBrakeWPF/Utilities/HandBrakeApp.cs +++ b/win/CS/HandBrakeWPF/Utilities/HandBrakeApp.cs @@ -14,6 +14,7 @@ namespace HandBrakeWPF.Utilities using System.IO;
using System.Linq;
+ using HandBrake.Interop.Interop;
using HandBrake.Interop.Utilities;
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs index ead1af3d2..79a3de526 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs @@ -11,6 +11,7 @@ namespace HandBrakeWPF.ViewModels {
using System;
+ using HandBrake.Interop.Interop;
using HandBrake.Interop.Utilities;
using HandBrakeWPF.Properties;
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 7b8046070..9e9a49e4f 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -22,6 +22,7 @@ namespace HandBrakeWPF.ViewModels using Caliburn.Micro;
+ using HandBrake.Interop.Interop;
using HandBrake.Interop.Utilities;
using HandBrakeWPF.Commands;
diff --git a/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs b/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs index a5d1d0d0d..f0b9a6e69 100644 --- a/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs +++ b/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs @@ -10,14 +10,10 @@ namespace HandBrakeWPF.Views
{
using System;
- using System.Diagnostics.CodeAnalysis;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
- using HandBrakeWPF.Commands;
- using HandBrakeWPF.ViewModels.Interfaces;
-
public partial class ErrorView : Window
{
public ErrorView()
|