diff options
Diffstat (limited to 'win/CS/frmAbout.cs')
-rw-r--r-- | win/CS/frmAbout.cs | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/win/CS/frmAbout.cs b/win/CS/frmAbout.cs deleted file mode 100644 index 976f897b2..000000000 --- a/win/CS/frmAbout.cs +++ /dev/null @@ -1,47 +0,0 @@ -/* frmAbout.cs $
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
-
-namespace Handbrake
-{
- using System;
- using System.Windows.Forms;
-
- using HandBrake.ApplicationServices;
- using HandBrake.ApplicationServices.Services;
- using HandBrake.ApplicationServices.Services.Interfaces;
-
- /// <summary>
- /// The About Window
- /// </summary>
- public partial class frmAbout : Form
- {
- IUserSettingService userSettingService = ServiceManager.UserSettingService;
-
- /// <summary>
- /// Initializes a new instance of the <see cref="frmAbout"/> class.
- /// </summary>
- public frmAbout()
- {
- InitializeComponent();
-
- string nightly = userSettingService.GetUserSetting<string>(ASUserSettingConstants.HandBrakeVersion).Contains("svn") ? " (SVN / Nightly Build)" : string.Empty;
- lbl_GUIBuild.Text = userSettingService.GetUserSetting<string>(ASUserSettingConstants.HandBrakeVersion) + " (" + userSettingService.GetUserSetting<int>(ASUserSettingConstants.HandBrakeBuild) + ") " + nightly;
- }
-
- /// <summary>
- /// Button - Close the window
- /// </summary>
- /// <param name="sender">
- /// The sender.
- /// </param>
- /// <param name="e">
- /// The e.
- /// </param>
- private void btn_close_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
-}
\ No newline at end of file |