summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorbrianmario <[email protected]>2007-07-18 08:32:09 +0000
committerbrianmario <[email protected]>2007-07-18 08:32:09 +0000
commit2ffb589f0bd275962e526c673b01d7d08237245d (patch)
tree4ed35989279524a7121a42841f372d803a2995bb /win/C#/frmOptions.cs
parenta0985795ca8a5f003272f713c57cd208b8097872 (diff)
WinGui:
continued adding to CLI manager code updated frmDvdInfo to display data parsed from STDOUT/STDERR minor updates to form constructors git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@708 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index 61fd90bde..fc3d55a0a 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -10,14 +10,12 @@ namespace Handbrake
{
public partial class frmOptions : Form
{
+ /// <summary>
+ /// When the form loads, Initialise all the setting components with their correct values
+ /// </summary>
public frmOptions()
{
InitializeComponent();
- }
-
- // When the form loads, Initialise all the setting components with their correct values
- private void frmOptions_Load(object sender, EventArgs e)
- {
if (Properties.Settings.Default.updateStatus == "Checked")
{
check_updateCheck.CheckState = CheckState.Checked;
@@ -42,7 +40,6 @@ namespace Handbrake
}
}
-
private void check_updateCheck_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.updateStatus = check_updateCheck.CheckState.ToString();