diff options
author | RandomEngy <[email protected]> | 2017-11-16 23:02:28 -0800 |
---|---|---|
committer | Scott <[email protected]> | 2017-11-20 15:05:54 +0000 |
commit | 8946e29db99d7fcb761b1a2be619ce18afce40aa (patch) | |
tree | 734cbc5691cded9be4bd32dae39fcb4dbffcaab6 /win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs | |
parent | a0f1c6a49d3f76c97729f1dbb54a1a520161e020 (diff) |
Did a bit of refactoring and added an .editorconfig file to enforce the "spaces for tabs" setting.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs index acc182205..5080c20c2 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs @@ -98,12 +98,12 @@ namespace HandBrake.ApplicationServices.Interop.Interfaces /// The index of the preview to get (0-based).
/// </param>
/// <param name="deinterlace">
- /// Enable basic deinterlace of preview images. 1 = on. 0 = off.
+ /// True to enable basic deinterlace of preview images.
/// </param>
/// <returns>
/// An image with the requested preview.
/// </returns>
- Bitmap GetPreview(PreviewSettings job, int previewNumber, int deinterlace);
+ Bitmap GetPreview(PreviewSettings job, int previewNumber, bool deinterlace);
/// <summary>
/// Pauses the current encode.
|