summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs
index 91c75fe45..a0374b5f1 100644
--- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs
@@ -11,6 +11,8 @@ namespace HandBrakeWPF.ViewModels.Interfaces
{
using System.Windows.Media.Imaging;
+ using HandBrake.ApplicationServices.Model;
+
/// <summary>
/// The Static Preview View Model Interface
/// </summary>
@@ -22,6 +24,9 @@ namespace HandBrakeWPF.ViewModels.Interfaces
/// <param name="image">
/// The image.
/// </param>
- void PreviewFrame(BitmapImage image);
+ /// <param name="task">
+ /// The task.
+ /// </param>
+ void PreviewFrame(BitmapImage image, EncodeTask task);
}
}