Commit 3b44ce0d authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

MacOSX/Framework: s/PrivateAPI/Private/

parent d4a87d8e
......@@ -44,7 +44,7 @@ struct message {
enum message_type_t type;
};
@interface VLCEventManager (PrivateAPI)
@interface VLCEventManager (Private)
- (void)callDelegateOfObjectAndSendNotificationWithArgs:(NSData*)data;
- (void)callObjectMethodWithArgs:(NSData*)data;
......@@ -188,7 +188,7 @@ static void * EventDispatcherMainLoop(void * user_data)
}
@end
@implementation VLCEventManager (PrivateAPI)
@implementation VLCEventManager (Private)
- (void)callDelegateOfObjectAndSendNotificationWithArgs:(NSData*)data
{
......
......@@ -92,7 +92,7 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
// TODO: Documentation
@interface VLCMedia (PrivateAPI)
@interface VLCMedia (Private)
/* Statics */
+ (libvlc_meta_t)stringToMetaType:(NSString *)string;
......@@ -375,7 +375,7 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
@end
@implementation VLCMedia (PrivateAPI)
@implementation VLCMedia (Private)
#define VLCStringToMeta( name, string ) if ([VLCMetaInformation##name compare:string] == NSOrderedSame) return libvlc_meta_##name;
#define VLCMetaToString( name, type ) if (libvlc_meta_##name == type) return VLCMetaInformation##name;
......
......@@ -34,7 +34,7 @@ NSString *VLCMediaListItemAdded = @"VLCMediaListItemAdded";
NSString *VLCMediaListItemDeleted = @"VLCMediaListItemDeleted";
// TODO: Documentation
@interface VLCMediaList (PrivateAPI)
@interface VLCMediaList (Private)
/* Initializers */
- (void)initInternalMediaList;
......@@ -273,7 +273,7 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
@end
@implementation VLCMediaList (PrivateAPI)
@implementation VLCMediaList (Private)
- (void)initInternalMediaList
{
......
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