Commit a1dc0f13 authored by Jérome Decoodt's avatar Jérome Decoodt

Use new selectors only if they exist...

parent d50eaf24
......@@ -1795,7 +1795,7 @@ if( MACOS_VERSION >= 10.3 ) \
[o_stepper setFloatValue: [o_textfield floatValue]];
}
- (int)floatValue
- (float)floatValue
{
return [o_stepper floatValue];
}
......@@ -1905,7 +1905,7 @@ if( MACOS_VERSION >= 10.3 ) \
[o_slider setFloatValue: [o_textfield floatValue]];
}
- (int)floatValue
- (float)floatValue
{
return [o_slider floatValue];
}
......@@ -2296,10 +2296,12 @@ if( _p_item->i_type == CONFIG_ITEM_MODULE_LIST )
o_scrollview = [[[NSScrollView alloc] initWithFrame: s_rc] retain];
[o_scrollview setDrawsBackground: NO];
[o_scrollview setBorderType: NSBezelBorder];
if( MACOS_VERSION >= 10.3 )
[o_scrollview setAutohidesScrollers:YES];
NSTableView *o_tableview;
o_tableview = [[NSTableView alloc] initWithFrame : s_rc];
if( MACOS_VERSION >= 10.3 )
[o_tableview setUsesAlternatingRowBackgroundColors:YES];
[o_tableview setHeaderView:nil];
/* TODO: find a good way to fix the row height and text size*/
......
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