summaryrefslogtreecommitdiffstats
path: root/macosx/HBPicture.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-22 07:55:39 +0000
committerritsuka <[email protected]>2014-12-22 07:55:39 +0000
commita052152ebb5b1844ca76ca65b1fed359307e8ad4 (patch)
treedf12b6ae8d8e02c3aa9f835d4f828bea00501607 /macosx/HBPicture.h
parent546f57a1402492f2aedeab1ca6cf9f3d3201795f (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.h4
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