Commit e4c7e1db authored by Felix Paul Kühne's avatar Felix Paul Kühne Committed by Jean-Baptiste Kempf

macosx: compilation fix for earlier clang releases and runtime fix for 10.6

(cherry picked from commit 78e91e55409866e07271be234452a122f717d662)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 56deef07
...@@ -209,13 +209,13 @@ ...@@ -209,13 +209,13 @@
NSArray *columns = [o_outline_view tableColumns]; NSArray *columns = [o_outline_view tableColumns];
NSUInteger count = columns.count; NSUInteger count = columns.count;
for (NSUInteger x = 0; x < count; x++) for (NSUInteger x = 0; x < count; x++)
[[columns[x] dataCell] setFont:fontToUse]; [[[columns objectAtIndex:x] dataCell] setFont:fontToUse];
[o_outline_view setRowHeight:rowHeight]; [o_outline_view setRowHeight:rowHeight];
columns = [o_outline_view_other tableColumns]; columns = [o_outline_view_other tableColumns];
count = columns.count; count = columns.count;
for (NSUInteger x = 0; x < count; x++) for (NSUInteger x = 0; x < count; x++)
[[columns[x] dataCell] setFont:fontToUse]; [[[columns objectAtIndex:x] dataCell] setFont:fontToUse];
[o_outline_view_other setRowHeight:rowHeight]; [o_outline_view_other setRowHeight:rowHeight];
} }
......
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