[vlc-commits] macosx: CAS: fix 10.5 compatibility
Felix Paul Kühne
git at videolan.org
Fri Jun 1 23:36:54 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Jun 1 23:26:33 2012 +0200| [28767cee0d52508665170469ce5d90cddacd943d] | committer: Felix Paul Kühne
macosx: CAS: fix 10.5 compatibility
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=28767cee0d52508665170469ce5d90cddacd943d
---
modules/gui/macosx/ConvertAndSave.h | 6 ++++++
modules/gui/macosx/ConvertAndSave.m | 6 ------
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/modules/gui/macosx/ConvertAndSave.h b/modules/gui/macosx/ConvertAndSave.h
index f80bd4c..c89bbdf 100644
--- a/modules/gui/macosx/ConvertAndSave.h
+++ b/modules/gui/macosx/ConvertAndSave.h
@@ -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;
+ at property (readwrite, retain) NSArray * profileNames;
+ at property (readwrite, retain) NSArray * profileValueList;
+ at property (readwrite, retain) NSMutableArray * currentProfile;
+ (VLCConvertAndSave *)sharedInstance;
diff --git a/modules/gui/macosx/ConvertAndSave.m b/modules/gui/macosx/ConvertAndSave.m
index 73e77cd..c34f63c 100644
--- a/modules/gui/macosx/ConvertAndSave.m
+++ b/modules/gui/macosx/ConvertAndSave.m
@@ -26,12 +26,6 @@
#import <vlc_common.h>
#import <vlc_url.h>
- at interface VLCConvertAndSave ()
- at property (readwrite, retain) NSArray * profileNames;
- at property (readwrite, retain) NSArray * profileValueList;
- at property (readwrite, retain) NSMutableArray * currentProfile;
- at end
-
@implementation VLCConvertAndSave
@synthesize MRL=_MRL, outputDestination=_outputDestination, profileNames=_profileNames, profileValueList=_profileValueList, currentProfile=_currentProfile;
More information about the vlc-commits
mailing list