diff options
author | sr55 <[email protected]> | 2010-06-06 18:22:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-06 18:22:39 +0000 |
commit | 0c9a71f626e0e552cf670103b8dad8e61de1fb69 (patch) | |
tree | 8bda1188ea4fd4f15700b5c997c491bbe37f9f4e /win/C#/Controls | |
parent | 21edb5248c8d25d334e3225e2f52ff9e8d9782dd (diff) |
WinGui:
- Moved all the services that handle parsing, scanning, encodes and the queue out into a separate library.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3362 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r-- | win/C#/Controls/AudioPanel.cs | 4 | ||||
-rw-r--r-- | win/C#/Controls/PictureSettings.cs | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/win/C#/Controls/AudioPanel.cs b/win/C#/Controls/AudioPanel.cs index 915910573..6d4b00804 100644 --- a/win/C#/Controls/AudioPanel.cs +++ b/win/C#/Controls/AudioPanel.cs @@ -10,7 +10,9 @@ namespace Handbrake.Controls using System.Linq;
using System.Windows.Forms;
using Functions;
- using Parsing;
+
+ using HandBrake.ApplicationServices.Parsing;
+
using Presets;
using AudioTrack = Model.AudioTrack;
diff --git a/win/C#/Controls/PictureSettings.cs b/win/C#/Controls/PictureSettings.cs index 333bec3b0..1528d07b7 100644 --- a/win/C#/Controls/PictureSettings.cs +++ b/win/C#/Controls/PictureSettings.cs @@ -9,7 +9,9 @@ namespace Handbrake.Controls using System.Drawing;
using System.Globalization;
using System.Windows.Forms;
- using Parsing;
+
+ using HandBrake.ApplicationServices.Parsing;
+
using Presets;
/// <summary>
|