summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-09-05 14:46:56 +0000
committersr55 <[email protected]>2008-09-05 14:46:56 +0000
commit2d4587713e70ea729e5e4f20e4d72407e7a66633 (patch)
tree53fa5d99836e10622d7c764c5036516bab02e777 /win/C#/frmOptions.cs
parent52482a772acdb03a8b77d4d605f3c7678de20e11 (diff)
WinGui:
- Code Cleanup - Bugfix: PresetLoader incorrectly loading audio track number with user presets. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1666 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index fb48f803d..2a7695fab 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -65,7 +65,7 @@ namespace Handbrake
text_an_path.Text = Properties.Settings.Default.autoNamePath;
- if (text_an_path.Text == "")
+ if (text_an_path.Text == string.Empty)
text_an_path.Text = "Click 'Browse' to set the default location";
}
@@ -139,7 +139,7 @@ namespace Handbrake
private void text_an_path_TextChanged(object sender, EventArgs e)
{
- if (text_an_path.Text == "")
+ if (text_an_path.Text == string.Empty)
{
Properties.Settings.Default.autoNamePath = "";
text_an_path.Text = "Click 'Browse' to set the default location";