diff options
author | ritsuka <[email protected]> | 2014-12-22 07:55:39 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-22 07:55:39 +0000 |
commit | a052152ebb5b1844ca76ca65b1fed359307e8ad4 (patch) | |
tree | df12b6ae8d8e02c3aa9f835d4f828bea00501607 /macosx/HBPicture.h | |
parent | 546f57a1402492f2aedeab1ca6cf9f3d3201795f (diff) |
MacGui: implement NSCoding protocol in HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6638 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPicture.h')
-rw-r--r-- | macosx/HBPicture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPicture.h b/macosx/HBPicture.h index ee35f75eb..25394767f 100644 --- a/macosx/HBPicture.h +++ b/macosx/HBPicture.h @@ -13,7 +13,7 @@ extern NSString * const HBPictureChangedNotification; /** * HBPicture */ -@interface HBPicture : NSObject +@interface HBPicture : NSObject <NSCoding> - (instancetype)initWithTitle:(HBTitle *)title; @@ -63,7 +63,7 @@ extern NSString * const HBPictureChangedNotification; @property (nonatomic, readonly, getter=isKeepDisplayAspect) BOOL keepDisplayAspectEditable; @property (nonatomic, readonly, getter=isCustomAnamorphicEnabled) BOOL customAnamorphicEnabled; -@property (nonatomic, readonly) HBTitle *title; +@property (nonatomic, readwrite, assign) HBTitle *title; @end |