X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FfrmUpdater.cs;h=f2e7c02d6bbc5c8ed4e56c735656ff61658c3a39;hb=d571d3e6a3bb4bbeda35cac674f697a253a11e94;hp=12376068a75420f2837ae8527700f7449795ec09;hpb=7be6051e420dba45add0a213f12f143b898f5d7a;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/frmUpdater.cs b/win/C#/frmUpdater.cs index 12376068..f2e7c02d 100644 --- a/win/C#/frmUpdater.cs +++ b/win/C#/frmUpdater.cs @@ -4,15 +4,16 @@ Homepage: . It may be used under the terms of the GNU General Public License. */ -using System; -using System.Windows.Forms; -using Handbrake.Functions; - namespace Handbrake { + using System; + using System.Windows.Forms; + using Functions; + public partial class frmUpdater : Form { - readonly AppcastReader Appcast; + private readonly AppcastReader Appcast; + public frmUpdater(AppcastReader reader) { InitializeComponent(); @@ -29,7 +30,8 @@ namespace Handbrake private void SetVersions() { - string old = "(You have: " + Properties.Settings.Default.hb_version.Trim() + " / " + Properties.Settings.Default.hb_build.ToString().Trim() + ")"; + string old = "(You have: " + Properties.Settings.Default.hb_version.Trim() + " / " + + Properties.Settings.Default.hb_build.ToString().Trim() + ")"; string newBuild = Appcast.Version.Trim() + " (" + Appcast.Build + ")"; lbl_update_text.Text = "HandBrake " + newBuild + " is now available. " + old; } @@ -53,6 +55,5 @@ namespace Handbrake this.Close(); } - } } \ No newline at end of file