diff options
Diffstat (limited to 'win/C#/Controls/x264Panel.cs')
-rw-r--r-- | win/C#/Controls/x264Panel.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs index f63214b23..8d223f6ab 100644 --- a/win/C#/Controls/x264Panel.cs +++ b/win/C#/Controls/x264Panel.cs @@ -8,9 +8,6 @@ namespace Handbrake.Controls using System;
using System.Windows.Forms;
- /// <summary>
- /// The Advanced Panel
- /// </summary>
public partial class x264Panel : UserControl
{
/*
@@ -41,10 +38,7 @@ namespace Handbrake.Controls {
return rtf_x264Query.Text;
}
- set
- {
- rtf_x264Query.Text = value;
- }
+ set { rtf_x264Query.Text = value; }
}
/// <summary>
@@ -1005,7 +999,7 @@ namespace Handbrake.Controls private void widgetControlChanged(object sender, EventArgs e)
{
- Control changedControlName = (Control)sender;
+ Control changedControlName = (Control) sender;
string controlName = string.Empty;
switch (changedControlName.Name.Trim())
|