diff options
author | sr55 <[email protected]> | 2014-03-23 12:50:33 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-03-23 12:50:33 +0000 |
commit | 844c185f87eae47a25ce86e2977d60bc9c57476d (patch) | |
tree | 6950e538c9339f971b4b5649ccaedb042c7ae227 /win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs | |
parent | 39c74335105caafaaf7468958303671d623495e0 (diff) |
WinGui: Restore rolled back tabbing fix + added a check for illegal characters to the destination text box. Add to Queue will now prevent items from begin added with illegal characters also.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6129 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs index 0d176b7b7..e08d2d9ff 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs @@ -39,7 +39,10 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// <summary>
/// Add the current task to the queue.
/// </summary>
- void AddToQueue();
+ /// <returns>
+ /// True if added, false if error
+ /// </returns>
+ bool AddToQueue();
/// <summary>
/// File Scan
|