summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-05-15 23:41:54 +0000
committersr55 <[email protected]>2008-05-15 23:41:54 +0000
commitb893b5ed7bdb357d57255492e6d73799d2229ab7 (patch)
treeefc2c183a1aaad30ab374f46fb4b69f4bc5f216f /win/C#/frmMain.cs
parentaf12cf154dbc7171f21b4dca45468014d23108f0 (diff)
WinGui:
- Fix for http://forum.handbrake.fr/viewtopic.php?f=12&t=6086 git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1461 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index e0b4f551f..76bb5f26c 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -498,7 +498,7 @@ namespace Handbrake
}
private void drp_dvdtitle_Click(object sender, EventArgs e)
{
- if ((drp_dvdtitle.Items.Count == 1) && ((string)drp_dvdtitle.Items[0] == "Automatic"))
+ if ((drp_dvdtitle.Items.Count == 1) && (drp_dvdtitle.Items[0].ToString() == "Automatic"))
MessageBox.Show("There are no titles to select. Please scan the DVD by clicking the 'browse' button above before trying to select a title.", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
private void drp_dvdtitle_SelectedIndexChanged(object sender, EventArgs e)