summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-10-08 15:34:28 +0000
committersr55 <[email protected]>2011-10-08 15:34:28 +0000
commit1733f1d85d7c235d4c4cd5ad1cee689f6725fc5e (patch)
tree23a3b899d12b6c32ef8ffe87bff22728b4ade809
parentae4e2cc4418c306249b80e7da1af006b5d1d9af2 (diff)
WinGui: typo fix.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4274 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs
index ac9965c48..29a2329f8 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryParserUtility.cs
@@ -108,7 +108,7 @@ namespace HandBrake.ApplicationServices.Utilities
Match advanced = Regex.Match(input, @"-x ([.,/a-zA-Z0-9=:-]*)");
Match x264Preset = Regex.Match(input, @"--x264-preset([=a-zA-Z0-9\s]*)");
Match x264Tune = Regex.Match(input, @"--x264-tune([=a-zA-Z0-9\s]*)");
- Match x264Profile = Regex.Match(input, @"-x264-profile([=a-zA-Z0-9\s]*)");
+ Match x264Profile = Regex.Match(input, @"--x264-profile([=a-zA-Z0-9\s]*)");
#endregion