summaryrefslogtreecommitdiffstats
path: root/win/CS/ToolWindows/TitleSpecificScan.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/ToolWindows/TitleSpecificScan.cs')
-rw-r--r--win/CS/ToolWindows/TitleSpecificScan.cs55
1 files changed, 0 insertions, 55 deletions
diff --git a/win/CS/ToolWindows/TitleSpecificScan.cs b/win/CS/ToolWindows/TitleSpecificScan.cs
deleted file mode 100644
index 6c938342e..000000000
--- a/win/CS/ToolWindows/TitleSpecificScan.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-/* TitleSpecificScan.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.ToolWindows
-{
- using System;
- using System.Windows.Forms;
-
- /// <summary>
- /// Title Specific Scan
- /// </summary>
- public partial class TitleSpecificScan : Form
- {
- public TitleSpecificScan()
- {
- InitializeComponent();
- }
-
- /// <summary>
- /// Button Cancel Click Event Handler
- /// </summary>
- /// <param name="sender">The Sender</param>
- /// <param name="e">The EventArgs</param>
- private void BtnCancelClick(object sender, EventArgs e)
- {
- this.DialogResult = DialogResult.Cancel;
- }
-
- /// <summary>
- /// Button Scan Click Event Handler
- /// </summary>
- /// <param name="sender">The Sender</param>
- /// <param name="e">The EventArgs</param>
- private void BtnScanClick(object sender, EventArgs e)
- {
- this.DialogResult = DialogResult.OK;
- }
-
- /// <summary>
- /// Gets the title that the user entered.
- /// </summary>
- public int Title
- {
- get
- {
- int title;
- int.TryParse(this.titleNumber.Text, out title);
-
- return title;
- }
- }
- }
-} \ No newline at end of file