summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-04-13 17:15:46 +0000
committersr55 <[email protected]>2009-04-13 17:15:46 +0000
commit16bbb89ba213297636c2cbf463cb37e3442a0da2 (patch)
treec4389ab334b272b29491699848b699d431eeb917 /win/C#/frmMain.cs
parent5680b256e398c3c4c28c36e479e8983284b0a340 (diff)
WinGui:
- Cut the Query Parser code down by 509 lines of code. - Fixed issue in Preview window, (mkv files were not playing back) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2321 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index ba7134645..887effb89 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -106,7 +106,7 @@ namespace Handbrake
// Send the query from the file to the Query Parser class, then load the preset
QueryParser presetQuery = QueryParser.Parse(query);
- presetLoader.presetLoader(this, presetQuery, Properties.Settings.Default.defaultPreset, loadPictureSettings);
+ PresetLoader.presetLoader(this, presetQuery, Properties.Settings.Default.defaultPreset, loadPictureSettings);
// The x264 widgets will need updated, so do this now:
x264Panel.X264_StandardizeOptString();
@@ -501,7 +501,7 @@ namespace Handbrake
QueryParser presetQuery = QueryParser.Parse(query);
// Now load the preset
- presetLoader.presetLoader(this, presetQuery, presetName, loadPictureSettings);
+ PresetLoader.presetLoader(this, presetQuery, presetName, loadPictureSettings);
// The x264 widgets will need updated, so do this now:
x264Panel.X264_StandardizeOptString();