Commit 28767cee authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: CAS: fix 10.5 compatibility

parent 8dcf1227
......@@ -85,9 +85,15 @@
NSString * _MRL;
NSString * _outputDestination;
NSArray * _profileNames;
NSArray * _profileValueList;
NSMutableArray * _currentProfile;
}
@property (readwrite, nonatomic, retain) NSString * MRL;
@property (readwrite, nonatomic, retain) NSString * outputDestination;
@property (readwrite, retain) NSArray * profileNames;
@property (readwrite, retain) NSArray * profileValueList;
@property (readwrite, retain) NSMutableArray * currentProfile;
+ (VLCConvertAndSave *)sharedInstance;
......
......@@ -26,12 +26,6 @@
#import <vlc_common.h>
#import <vlc_url.h>
@interface VLCConvertAndSave ()
@property (readwrite, retain) NSArray * profileNames;
@property (readwrite, retain) NSArray * profileValueList;
@property (readwrite, retain) NSMutableArray * currentProfile;
@end
@implementation VLCConvertAndSave
@synthesize MRL=_MRL, outputDestination=_outputDestination, profileNames=_profileNames, profileValueList=_profileValueList, currentProfile=_currentProfile;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment