diff options
author | sr55 <[email protected]> | 2011-01-23 15:00:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-01-23 15:00:58 +0000 |
commit | c0ac2af7f81171a91f726cdf3833af1deadf8511 (patch) | |
tree | 3727abbd76bf4ec9c4da492ac9125475a1a10333 /win/C#/HandBrake.ApplicationServices/Parsing | |
parent | b55c482455353fea828f52d6889ad451202a6a5f (diff) |
WinGui:
- Started Hooking up the WPF main window. Initial events subscribed. Some initial bindings and actions.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3766 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Parsing')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Parsing/Source.cs (renamed from win/C#/HandBrake.ApplicationServices/Parsing/DVD.cs) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Parsing/DVD.cs b/win/C#/HandBrake.ApplicationServices/Parsing/Source.cs index 40b1c4e5f..0ed9c0033 100644 --- a/win/C#/HandBrake.ApplicationServices/Parsing/DVD.cs +++ b/win/C#/HandBrake.ApplicationServices/Parsing/Source.cs @@ -1,4 +1,4 @@ -/* DVD.cs $ This file is part of the HandBrake source code.
+/* Source.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. */
@@ -10,13 +10,13 @@ namespace HandBrake.ApplicationServices.Parsing /// <summary>
/// An object representing a scanned DVD
/// </summary>
- public class DVD
+ public class Source
{
/// <summary>
- /// Initializes a new instance of the <see cref="DVD"/> class.
+ /// Initializes a new instance of the <see cref="Source"/> class.
/// Default constructor for this object
/// </summary>
- public DVD()
+ public Source()
{
Titles = new List<Title>();
}
@@ -35,9 +35,9 @@ namespace HandBrake.ApplicationServices.Parsing /// <returns>
/// A DVD object which contains a list of title inforamtion
/// </returns>
- public static DVD Parse(StreamReader output)
+ public static Source Parse(StreamReader output)
{
- var thisDVD = new DVD();
+ var thisDVD = new Source();
while (!output.EndOfStream)
{
|