summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-08-15 16:00:22 +0000
committersr55 <[email protected]>2011-08-15 16:00:22 +0000
commit3e3deb33d5c5ec4aca3d6c855db646b511bf788b (patch)
tree3c2012081d7e05c428803f57ddf19911fbe16437 /win/CS/HandBrake.ApplicationServices/Model
parentbb6b6007ea2111cac17ff5fff2f2105bb5b7e6e9 (diff)
WinGui: Remove a duplicate model object.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4174 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs1
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs24
2 files changed, 0 insertions, 25 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
index 2113c8605..1d7c61913 100644
--- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
+++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
@@ -11,7 +11,6 @@ namespace HandBrake.ApplicationServices.Model
using HandBrake.Interop.Model;
using HandBrake.Interop.Model.Encoding;
- using Anamorphic = HandBrake.ApplicationServices.Model.Encoding.Anamorphic;
using OutputFormat = HandBrake.ApplicationServices.Model.Encoding.OutputFormat;
/// <summary>
diff --git a/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs b/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs
deleted file mode 100644
index c958b777c..000000000
--- a/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Anamorphic.cs $
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
-
-namespace HandBrake.ApplicationServices.Model.Encoding
-{
- using System.ComponentModel;
-
- /// <summary>
- /// Anamorphic Mode
- /// </summary>
- public enum Anamorphic
- {
- [Description("None")]
- None = 0,
- [Description("Strict")]
- Strict,
- [Description("Loose")]
- Loose,
- [Description("Custom")]
- Custom
- }
-}