diff options
author | ritsuka <[email protected]> | 2014-08-10 16:05:07 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-10 16:05:07 +0000 |
commit | 6aee3b7518264af46fd7d2f4580579313e2eaf72 (patch) | |
tree | 9e2839ae202e1c07baeb181abba643714ae71b21 /macosx/HBVideoController.h | |
parent | c50899dd7361801c04463fe1630392500608ebab (diff) |
MacGui: implemented the HBViewValidation protocol in each of the main window view controllers.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6285 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideoController.h')
-rw-r--r-- | macosx/HBVideoController.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBVideoController.h b/macosx/HBVideoController.h index 75a65f292..b3d0637bc 100644 --- a/macosx/HBVideoController.h +++ b/macosx/HBVideoController.h @@ -5,6 +5,8 @@ It may be used under the terms of the GNU General Public License. */ #import <Cocoa/Cocoa.h> +#import "HBViewValidation.h" + #include "hb.h" @class HBController; @@ -17,9 +19,7 @@ extern NSString *HBVideoEncoderChangedNotification; * * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications. */ -@interface HBVideoController : NSViewController - -- (void)enableUI:(BOOL)b; +@interface HBVideoController : NSViewController <HBViewValidation> // Methods to apply the settings to the controller - (void)applyVideoSettingsFromQueue:(NSDictionary *)queueToApply; |