Commit 69c5aed9 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: internalize private playlist internals

parent 6e617473
......@@ -57,7 +57,6 @@
IBOutlet VLCPlaylistView* o_outline_view_other;
NSMutableDictionary *o_outline_dict;
playlist_item_t * p_current_root_item;
}
- (void)setPlaylistRoot: (playlist_item_t *)root_item;
......@@ -106,16 +105,6 @@
IBOutlet id o_save_accessory_text;
IBOutlet id o_playlist_header;
NSImage *o_descendingSortingImage;
NSImage *o_ascendingSortingImage;
NSMutableArray *o_nodes_array;
NSMutableArray *o_items_array;
BOOL b_selected_item_met;
BOOL b_isSortDescending;
id o_tc_sortColumn;
}
- (void)searchfieldChanged:(NSNotification *)o_notification;
......
......@@ -127,6 +127,12 @@
* This class the superclass of the VLCPlaylist and VLCPlaylistWizard.
* It contains the common methods and elements of these 2 entities.
*****************************************************************************/
@interface VLCPlaylistCommon ()
{
playlist_item_t * p_current_root_item;
}
@end
@implementation VLCPlaylistCommon
- (id)init
......@@ -401,7 +407,19 @@
/*****************************************************************************
* VLCPlaylist implementation
*****************************************************************************/
@interface VLCPlaylist (Internal)
@interface VLCPlaylist ()
{
NSImage *o_descendingSortingImage;
NSImage *o_ascendingSortingImage;
NSMutableArray *o_nodes_array;
NSMutableArray *o_items_array;
BOOL b_selected_item_met;
BOOL b_isSortDescending;
id o_tc_sortColumn;
}
- (void)saveTableColumns;
@end
......
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