summaryrefslogtreecommitdiffstats
path: root/win/C#
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-04-17 20:56:04 +0000
committersr55 <[email protected]>2008-04-17 20:56:04 +0000
commit8f7fc8b197e02370f95a47c68a01160e9085a9e8 (patch)
tree5066c65e5d0cef198aea0f916a77ccc0a69b1058 /win/C#
parent327fd9f7cfd7a379a96ab8c22db4d871ef4bab1f (diff)
WinGui:
- Removed some now redundant code (for last checkin) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1426 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-rw-r--r--win/C#/frmMain.Designer.cs3
-rw-r--r--win/C#/frmMain.cs29
2 files changed, 4 insertions, 28 deletions
diff --git a/win/C#/frmMain.Designer.cs b/win/C#/frmMain.Designer.cs
index 2c8f70dbd..5603b437e 100644
--- a/win/C#/frmMain.Designer.cs
+++ b/win/C#/frmMain.Designer.cs
@@ -436,7 +436,6 @@ namespace Handbrake
this.ToolTip.SetToolTip(this.check_largeFile, "Allows creation of MP4 files greater than 4GB.\r\nWarning: Breaks iPod, Apple TV (V" +
"ersion 1 only) and PS3 compatibility.\r\nRequires .mp4/.m4v file extension");
this.check_largeFile.UseVisualStyleBackColor = false;
- this.check_largeFile.Click += new System.EventHandler(this.check_largeFile_CheckedChanged);
//
// check_turbo
//
@@ -590,7 +589,6 @@ namespace Handbrake
" QuickTime can only read the files as long as the file extension is .mp4\r\nCan on" +
"ly be used with H.264 ");
this.check_optimiseMP4.UseVisualStyleBackColor = false;
- this.check_optimiseMP4.Click += new System.EventHandler(this.check_optimiseMP4_Clicked);
//
// check_iPodAtom
//
@@ -605,7 +603,6 @@ namespace Handbrake
this.ToolTip.SetToolTip(this.check_iPodAtom, "Required for 5th and 6th Generation iPods.\r\nEncodes will not sync if this is not " +
"enabled for H.264 encodes");
this.check_iPodAtom.UseVisualStyleBackColor = false;
- this.check_iPodAtom.Click += new System.EventHandler(this.check_iPodAtom_CheckedChanged);
//
// data_chpt
//
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 2ae2e1b90..541af041b 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -691,30 +691,6 @@ namespace Handbrake
}
}
- private void check_largeFile_CheckedChanged(object sender, EventArgs e)
- {
- if ((!text_destination.Text.Contains(".mp4")) && (!text_destination.Text.Contains(".m4v")))
- {
- MessageBox.Show("You can only use this option with the .mp4/.m4v file container.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- check_largeFile.CheckState = CheckState.Unchecked;
- }
- }
- private void check_iPodAtom_CheckedChanged(object sender, EventArgs e)
- {
- if ((!text_destination.Text.Contains(".mp4")) && (!text_destination.Text.Contains(".m4v")))
- {
- MessageBox.Show("You can only use this option with the .mp4/.m4v file container.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- check_iPodAtom.CheckState = CheckState.Unchecked;
- }
- }
- private void check_optimiseMP4_Clicked(object sender, EventArgs e)
- {
- if ((!text_destination.Text.Contains(".mp4")) && (!text_destination.Text.Contains(".m4v")))
- {
- MessageBox.Show("You can only use this option with the .mp4/.m4v file container.","Warning",MessageBoxButtons.OK,MessageBoxIcon.Warning);
- check_optimiseMP4.CheckState = CheckState.Unchecked;
- }
- }
//Video Tab
private void text_bitrate_TextChanged(object sender, EventArgs e)
@@ -2210,7 +2186,10 @@ namespace Handbrake
}
#endregion
-
+
+
+
+
// This is the END of the road ------------------------------------------------------------------------------
}
} \ No newline at end of file