summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/AttachedProperties
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-02-11 20:37:33 +0000
committersr55 <[email protected]>2017-02-11 20:37:33 +0000
commit9ce3910fd193628e754abf4939c3758f1e57e100 (patch)
treebb7e367be99a36e85aa2c4beb1f45c243ae43c75 /win/CS/HandBrakeWPF/AttachedProperties
parenta1455ea947b0f85665228f23d2f94f66bdad2cdd (diff)
WinGui: Fix a number of stylecop warnings.
Diffstat (limited to 'win/CS/HandBrakeWPF/AttachedProperties')
-rw-r--r--win/CS/HandBrakeWPF/AttachedProperties/MenuItemExtensions.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/AttachedProperties/MenuItemExtensions.cs b/win/CS/HandBrakeWPF/AttachedProperties/MenuItemExtensions.cs
index e08cf59c6..4654d7ba2 100644
--- a/win/CS/HandBrakeWPF/AttachedProperties/MenuItemExtensions.cs
+++ b/win/CS/HandBrakeWPF/AttachedProperties/MenuItemExtensions.cs
@@ -9,7 +9,6 @@
namespace HandBrakeWPF.AttachedProperties
{
- using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
@@ -28,12 +27,12 @@ namespace HandBrakeWPF.AttachedProperties
"GroupName",
typeof(string),
typeof(MenuItemExtensions),
- new PropertyMetadata(String.Empty, OnGroupNameChanged));
+ new PropertyMetadata(string.Empty, OnGroupNameChanged));
/// <summary>
/// The element to group names.
/// </summary>
- public static Dictionary<MenuItem, String> ElementToGroupNames = new Dictionary<MenuItem, String>();
+ public static Dictionary<MenuItem, string> ElementToGroupNames = new Dictionary<MenuItem, string>();
#endregion