diff options
author | sr55 <[email protected]> | 2011-02-05 21:37:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-02-05 21:37:49 +0000 |
commit | c315f3cf228d84ab67c75c7f8fa7221379e88600 (patch) | |
tree | d52ef3b6b3aeb67a3628ef05fb6e318d90537641 /win/C#/HandBrake.ApplicationServices/Services | |
parent | 07bbd251a183b251d668ea44de1cc122221c7bd5 (diff) |
WinGui:
- Another round of refactoring. Query Parsing and Plist handling code moved to application services utilities namespace.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3781 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/LibScan.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/LibScan.cs b/win/C#/HandBrake.ApplicationServices/Services/LibScan.cs index ea27ffdf0..6f200e447 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/LibScan.cs @@ -261,18 +261,18 @@ namespace HandBrake.ApplicationServices.Services {
Title converted = new Title
{
- TitleNumber = title.TitleNumber,
- Duration = title.Duration,
- Resolution = new Size(title.Resolution.Width, title.Resolution.Height),
- AspectRatio = title.AspectRatio,
- AngleCount = title.AngleCount,
- ParVal = new Size(title.ParVal.Width, title.ParVal.Height),
+ TitleNumber = title.TitleNumber,
+ Duration = title.Duration,
+ Resolution = new Size(title.Resolution.Width, title.Resolution.Height),
+ AspectRatio = title.AspectRatio,
+ AngleCount = title.AngleCount,
+ ParVal = new Size(title.ParVal.Width, title.ParVal.Height),
AutoCropDimensions =
- Cropping.CreateCroppingObject(
- title.AutoCropDimensions.Top,
- title.AutoCropDimensions.Bottom,
- title.AutoCropDimensions.Left,
- title.AutoCropDimensions.Right),
+ new Cropping(
+ title.AutoCropDimensions.Top,
+ title.AutoCropDimensions.Bottom,
+ title.AutoCropDimensions.Left,
+ title.AutoCropDimensions.Right),
Fps = title.Framerate
};
|