diff options
author | sr55 <[email protected]> | 2009-08-30 16:15:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-30 16:15:01 +0000 |
commit | 20ff4c1c7f0e888400aecef0c6cf7355abba8ae4 (patch) | |
tree | 0cb03b0122cc5f8bc844678e696fb2f6a5c385bd /win/C#/Functions/QueryGenerator.cs | |
parent | c1adf4d22a63a6e63b4b0955e67db4f885c58c04 (diff) |
WinGui:
- Set use m4v option enabled by default.
- Fix some issues with auto setting m4v when use m4v is disabled.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2795 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index 4d0033415..15dfc0f70 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -21,7 +21,7 @@ namespace Handbrake.Functions /// <param name="duration"></param>
/// <param name="preview"></param>
/// <returns></returns>
- public string generateCLIQuery(frmMain mainWindow, int duration, string preview)
+ public string GenerateCLIQuery(frmMain mainWindow, int duration, string preview)
{
string query = "";
@@ -61,7 +61,7 @@ namespace Handbrake.Functions query += " -o " + '"' + mainWindow.text_destination.Text + '"';
}
- query += generateTabbedComponentsQuery(mainWindow);
+ query += GenerateTabbedComponentsQuery(mainWindow);
return query;
}
@@ -71,7 +71,7 @@ namespace Handbrake.Functions /// </summary>
/// <param name="mainWindow"></param>
/// <returns></returns>
- public static string generateTabbedComponentsQuery(frmMain mainWindow)
+ public static string GenerateTabbedComponentsQuery(frmMain mainWindow)
{
string query = "";
|