summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-02-05 21:39:09 +0000
committersr55 <[email protected]>2011-02-05 21:39:09 +0000
commit19c97ddd16b4da9d7d7bf05cc1e91537227da526 (patch)
tree0b88a29428fd1fba3c8c6bc8315c2702a72d74a5 /win/C#/frmMain.cs
parentc315f3cf228d84ab67c75c7f8fa7221379e88600 (diff)
WinGui:
- Updates to the WinForms app for the library changes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3782 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 95e7ce746..b9255ee48 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -172,7 +172,7 @@ namespace Handbrake
{
x264Panel.Reset2Defaults();
- QueryParserUtility presetQuery = QueryParserUtility.Parse(query);
+ EncodeTask presetQuery = QueryParserUtility.Parse(query);
PresetLoader.LoadPreset(this, presetQuery, Settings.Default.defaultPreset);
x264Panel.StandardizeOptString();
@@ -900,7 +900,7 @@ namespace Handbrake
x264Panel.Reset2Defaults();
// Send the query from the file to the Query Parser class
- QueryParserUtility presetQuery = QueryParserUtility.Parse(query);
+ EncodeTask presetQuery = QueryParserUtility.Parse(query);
// Now load the preset
PresetLoader.LoadPreset(this, presetQuery, presetName);
@@ -939,7 +939,7 @@ namespace Handbrake
{
if (openPreset.ShowDialog() == DialogResult.OK)
{
- QueryParserUtility parsed = PlistPresetHandler.Import(openPreset.FileName);
+ EncodeTask parsed = PlistPresetHandler.Import(openPreset.FileName);
if (presetHandler.CheckIfUserPresetExists(parsed.PresetName + " (Imported)"))
{
DialogResult result =
@@ -2238,7 +2238,7 @@ namespace Handbrake
if (queueEdit.Query != null)
{
// Send the query from the file to the Query Parser class
- QueryParserUtility presetQuery = QueryParserUtility.Parse(queueEdit.Query);
+ EncodeTask presetQuery = QueryParserUtility.Parse(queueEdit.Query);
// Now load the preset
PresetLoader.LoadPreset(this, presetQuery, "Load Back From Queue");