diff options
author | sr55 <[email protected]> | 2010-02-08 20:59:46 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-08 20:59:46 +0000 |
commit | 974fc416c9b792a5e7b1b2ce59083f68f2e6f8c4 (patch) | |
tree | 615ce4cd2177b363ff7393e2e8825dfba8d0bc24 /win/C#/Functions/QueryGenerator.cs | |
parent | e9d428e473e896b6a8d699c9c745e200869cfd69 (diff) |
WinGui:
- Banish % Quality display.
- Code Refactoring.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3105 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index 03fa22c83..499b11d2e 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -9,6 +9,7 @@ using System.Windows.Forms; using System.Globalization;
using System.IO;
using System.Collections.Generic;
+using Handbrake.Model;
namespace Handbrake.Functions
{
@@ -400,7 +401,7 @@ namespace Handbrake.Functions string srtDefault = String.Empty;
int srtCount = 0;
- List<Controls.SubtitleInfo> SubList = mainWindow.Subtitles.GetSubtitleInfoList();
+ List<SubtitleInfo> SubList = mainWindow.Subtitles.GetSubtitleInfoList();
foreach (var item in SubList)
{
@@ -524,8 +525,8 @@ namespace Handbrake.Functions #endregion
#region H264 Tab
- if (mainWindow.x264Panel.x264Query != "")
- query += " -x " + mainWindow.x264Panel.x264Query;
+ if (mainWindow.x264Panel.X264Query != "")
+ query += " -x " + mainWindow.x264Panel.X264Query;
#endregion
#region Processors / Other
|