diff options
author | sr55 <[email protected]> | 2011-12-30 18:57:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-12-30 18:57:30 +0000 |
commit | cd3e951792f05944fb9ba4f1bc17e581318bfe8f (patch) | |
tree | cc36dcf807b7d371132429fd7a7a5550233ee737 /win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs | |
parent | 1a4342793d9c7054b1a70030787af46f77208288 (diff) |
WinGui: (WPF) Move all the main UI tab UserControls into an MVVM format. Mostly code shuffling.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4393 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs index a0fa8e36d..6094157b0 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs @@ -15,17 +15,17 @@ namespace HandBrakeWPF.ViewModels.Interfaces public interface IErrorViewModel
{
/// <summary>
- /// The Error Details
+ /// Sets Details.
/// </summary>
string Details { set; }
/// <summary>
- /// The Error Message
+ /// Sets ErrorMessage.
/// </summary>
string ErrorMessage { set; }
/// <summary>
- /// The Error Solution
+ /// Sets Solution.
/// </summary>
string Solution { set; }
}
|