diff options
author | sr55 <[email protected]> | 2011-10-30 22:08:47 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-30 22:08:47 +0000 |
commit | ee03feea6ff45d159bd4060e5f7492ac727ec600 (patch) | |
tree | 4fc617500921dd7bb764ebe759955b761b8afb70 /win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs | |
parent | 1fae5640fafcc3a4613eba99dcbb56f3e98430ae (diff) |
WinGui: (WPF) Initial setup for the Log Window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4331 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs index b0159669f..aebdd7e73 100644 --- a/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs @@ -11,10 +11,12 @@ namespace HandBrakeWPF.ViewModels {
using Caliburn.Micro;
+ using HandBrakeWPF.ViewModels.Interfaces;
+
/// <summary>
/// The Log View Model
/// </summary>
- public class LogViewModel : ViewModelBase
+ public class LogViewModel : ViewModelBase, ILogViewModel
{
/// <summary>
/// Initializes a new instance of the <see cref="LogViewModel"/> class.
|