X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FfrmAbout.cs;h=e43706f739019c233760444bdcae192a1b3673af;hb=bdeda20369fa84dc46814378c9a4af6a21ec3212;hp=ab1ed2656f19d81b207be62274a4af3dc6cfefe7;hpb=7571a35c0fcabf7fa352f2fc3b3591d6a4f996ac;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs index ab1ed265..e43706f7 100644 --- a/win/C#/frmAbout.cs +++ b/win/C#/frmAbout.cs @@ -1,11 +1,11 @@ +/* frmAbout.cs $ + + This file is part of the HandBrake source code. + Homepage: . + It may be used under the terms of the GNU General Public License. */ + using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Text; using System.Windows.Forms; -using System.Diagnostics; namespace Handbrake { @@ -14,8 +14,7 @@ namespace Handbrake public frmAbout() { InitializeComponent(); - Version.Text = Properties.Settings.Default.hb_version; - lbl_build.Text = Properties.Settings.Default.hb_build.ToString(); + lbl_HBBuild.Text = Properties.Settings.Default.hb_version + " " + Properties.Settings.Default.hb_build; } private void btn_close_Click(object sender, EventArgs e) @@ -23,9 +22,6 @@ namespace Handbrake this.Close(); } - private void label_credits_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) - { - Process.Start("http://handbrake.m0k.org/trac/wiki/x264Options"); - } + } } \ No newline at end of file