diff options
author | sr55 <[email protected]> | 2018-12-08 15:28:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-12-08 15:28:38 +0000 |
commit | 14058f3ca4f1f31a65f96344426305a659eaa3eb (patch) | |
tree | c3ca42688e2d68d16997d85c5108a8b75990714f /win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs | |
parent | 5ed3665f950aa4370b5dcf039aff75236070f9b3 (diff) |
WinGui: Fix a number of build warnings. Fixes #1720 and #1721 and a few other warnings in the code.
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs b/win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs index 8edc537fc..05e6056b7 100644 --- a/win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs +++ b/win/CS/HandBrakeWPF/Commands/SourceMenuCommand.cs @@ -46,7 +46,7 @@ namespace HandBrakeWPF.Commands /// <summary>
/// The can execute changed.
/// </summary>
- public event EventHandler CanExecuteChanged;
+ public event EventHandler CanExecuteChanged { add { } remove { } }
#endregion
|