Commit 78e91e55 authored by Felix Paul Kühne's avatar Felix Paul Kühne

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

parent 6b3d8f33
...@@ -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