diff options
author | sr55 <[email protected]> | 2011-11-06 16:56:00 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-06 16:56:00 +0000 |
commit | 7afefbc8814370a3c01805f693f7dfb15399453a (patch) | |
tree | 2e1140d62393623ec166553f054b016db6b76e80 /win/CS/HandBrake.ApplicationServices/Parsing | |
parent | d986524c71c2e41ce329e9dd5f6c78cb3d6e4de2 (diff) |
WinGui: (WPF) Starting to wire up bits of the main window. (Source Scan)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4342 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Parsing')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Parsing/Source.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs b/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs index 0ed9c0033..a79da7040 100644 --- a/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs +++ b/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs @@ -49,5 +49,16 @@ namespace HandBrake.ApplicationServices.Parsing return thisDVD;
}
+
+ /// <summary>
+ /// Copy this Source to another Source Model
+ /// </summary>
+ /// <param name="source">
+ /// The source.
+ /// </param>
+ public void CopyTo(Source source)
+ {
+ source.Titles = this.Titles;
+ }
}
}
\ No newline at end of file |