diff options
Diffstat (limited to 'win/C#/frmUpdater.cs')
-rw-r--r-- | win/C#/frmUpdater.cs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/win/C#/frmUpdater.cs b/win/C#/frmUpdater.cs index 12376068a..f2e7c02d6 100644 --- a/win/C#/frmUpdater.cs +++ b/win/C#/frmUpdater.cs @@ -4,15 +4,16 @@ Homepage: <http://handbrake.fr>.
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 |