Commit bc8f5562 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed table column duplication by moving the dynamic column generation...

macosx: fixed table column duplication by moving the dynamic column generation from VLCPlaylistCommon to VLCPlaylist, where it belongs (close #6928)
parent 0baf709f
...@@ -21,16 +21,16 @@ ...@@ -21,16 +21,16 @@
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="4948"/>
<integer value="2730"/>
<integer value="2770"/> <integer value="2770"/>
<integer value="4850"/> <integer value="4948"/>
<integer value="21"/> <integer value="4372"/>
<integer value="915"/> <integer value="915"/>
<integer value="1617"/> <integer value="4722"/>
<integer value="4596"/> <integer value="4596"/>
<integer value="2730"/>
<integer value="4850"/>
<integer value="5100"/> <integer value="5100"/>
<integer value="4722"/> <integer value="1617"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
...@@ -445,10 +445,9 @@ ...@@ -445,10 +445,9 @@
<reference key="NSBackgroundColor" ref="885475112"/> <reference key="NSBackgroundColor" ref="885475112"/>
<reference key="NSGridColor" ref="756174976"/> <reference key="NSGridColor" ref="756174976"/>
<double key="NSRowHeight">15</double> <double key="NSRowHeight">15</double>
<int key="NSTvFlags">-71303168</int> <int key="NSTvFlags">-88080384</int>
<reference key="NSDelegate"/> <reference key="NSDelegate"/>
<reference key="NSDataSource"/> <reference key="NSDataSource"/>
<string key="NSAutosaveName">10thaniversary-mainPlaylistView</string>
<int key="NSGridStyleMask">1</int> <int key="NSGridStyleMask">1</int>
<int key="NSColumnAutoresizingStyle">4</int> <int key="NSColumnAutoresizingStyle">4</int>
<int key="NSDraggingSourceMaskForLocal">15</int> <int key="NSDraggingSourceMaskForLocal">15</int>
......
...@@ -65,8 +65,6 @@ ...@@ -65,8 +65,6 @@
- (playlist_item_t *)currentPlaylistRoot; - (playlist_item_t *)currentPlaylistRoot;
- (playlist_item_t *)selectedPlaylistItem; - (playlist_item_t *)selectedPlaylistItem;
- (NSOutlineView *)outlineView; - (NSOutlineView *)outlineView;
- (void)setColumn: (NSString *)o_column state: (NSInteger)i_state;
@end @end
/***************************************************************************** /*****************************************************************************
...@@ -151,4 +149,6 @@ ...@@ -151,4 +149,6 @@
- (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue; - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
- (void)appendNodeArray:(NSArray*)o_array inNode:(playlist_item_t *)p_node atPos:(int)i_position enqueue:(BOOL)b_enqueue; - (void)appendNodeArray:(NSArray*)o_array inNode:(playlist_item_t *)p_node atPos:(int)i_position enqueue:(BOOL)b_enqueue;
- (void)setColumn: (NSString *)o_column state: (NSInteger)i_state;
@end @end
This diff is collapsed.
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