diff options
author | sr55 <[email protected]> | 2010-02-20 22:30:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-20 22:30:12 +0000 |
commit | 3678fc6353c1b1bbea23723891cbf950f66ab452 (patch) | |
tree | 401d6f9b859ecac9fdf13fe432dd564589ac7276 /win/C#/frmUpdater.cs | |
parent | b59b7b8733533aed4b97da6679e455df63049e23 (diff) |
WinGui:
- Cleanup more StyleCop warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3131 b64f7644-9d1e-0410-96f1-a4d463321fa5
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 |