diff options
author | sr55 <[email protected]> | 2015-01-19 21:55:29 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-19 21:55:29 +0000 |
commit | 50445c5138c234e860dcf8b54134aa6668c896df (patch) | |
tree | a9f4215d3354b1d0c6bf7a8e5550d680d1d3b8c8 /win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs | |
parent | e92de31ae2e15317e95c5ecf13a2105916348881 (diff) |
WinGui: Quick Fix for the batch encoding with libhb mode.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6775 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs index 69e4a0f33..2647e2ae8 100644 --- a/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs @@ -962,6 +962,9 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// Setup this window for a new source
/// </summary>
+ /// <param name="source">
+ /// The source.
+ /// </param>
/// <param name="title">
/// The title.
/// </param>
@@ -971,7 +974,7 @@ namespace HandBrakeWPF.ViewModels /// <param name="task">
/// The task.
/// </param>
- public void SetSource(Title title, Preset preset, EncodeTask task)
+ public void SetSource(Source source, Title title, Preset preset, EncodeTask task)
{
this.Task = task;
this.NotifyOfPropertyChange(() => this.AdvancedOptionsString);
|