diff options
author | sr55 <[email protected]> | 2007-12-20 18:17:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-20 18:17:42 +0000 |
commit | 497e1b008f2ad22b2a67405e53edd047167a398a (patch) | |
tree | 26f7303012ba259faec831894ee28c0f67d0ae32 /win/C#/frmAbout.cs | |
parent | 2f4b0dffd1b896bd7186e8be3d03cc56ae28e051 (diff) |
WinGui:
- Some more code code cleanup done. Nothing major.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1141 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAbout.cs')
-rw-r--r-- | win/C#/frmAbout.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs index fabcea6e5..ab1ed2656 100644 --- a/win/C#/frmAbout.cs +++ b/win/C#/frmAbout.cs @@ -14,8 +14,8 @@ namespace Handbrake public frmAbout()
{
InitializeComponent();
- Version.Text = Properties.Settings.Default.CliVersion;
- lbl_build.Text = Properties.Settings.Default.build.ToString();
+ Version.Text = Properties.Settings.Default.hb_version;
+ lbl_build.Text = Properties.Settings.Default.hb_build.ToString();
}
private void btn_close_Click(object sender, EventArgs e)
|