diff options
author | sr55 <[email protected]> | 2011-10-08 15:34:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-08 15:34:28 +0000 |
commit | 1733f1d85d7c235d4c4cd5ad1cee689f6725fc5e (patch) | |
tree | 23a3b899d12b6c32ef8ffe87bff22728b4ade809 | |
parent | ae4e2cc4418c306249b80e7da1af006b5d1d9af2 (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.cs | 2 |
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
|