diff options
author | brianmario <[email protected]> | 2007-07-18 08:32:09 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-18 08:32:09 +0000 |
commit | 2ffb589f0bd275962e526c673b01d7d08237245d (patch) | |
tree | 4ed35989279524a7121a42841f372d803a2995bb /win/C#/frmAbout.cs | |
parent | a0985795ca8a5f003272f713c57cd208b8097872 (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#/frmAbout.cs')
-rw-r--r-- | win/C#/frmAbout.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs index d34ff6567..e27df2a3b 100644 --- a/win/C#/frmAbout.cs +++ b/win/C#/frmAbout.cs @@ -13,17 +13,12 @@ namespace Handbrake public frmAbout()
{
InitializeComponent();
+ Version.Text = Properties.Settings.Default.GuiVersion;
}
private void btn_close_Click(object sender, EventArgs e)
{
this.Close();
}
-
-
- private void About_Load(object sender, EventArgs e)
- {
- Version.Text = Properties.Settings.Default.GuiVersion;
- }
}
}
\ No newline at end of file |