From 2d4587713e70ea729e5e4f20e4d72407e7a66633 Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 5 Sep 2008 14:46:56 +0000 Subject: 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 --- win/C#/frmOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win/C#/frmOptions.cs') 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"; -- cgit v1.2.3