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

macosx: fixed crash when opening the simple preferences introduced in...

macosx: fixed crash when opening the simple preferences introduced in [f69cdcd3]
parent 0f62e1ad
...@@ -186,11 +186,11 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des ...@@ -186,11 +186,11 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
} }
else if( [o_itemIdent isEqual: VLCOSDSettingToolbarIdentifier] ) else if( [o_itemIdent isEqual: VLCOSDSettingToolbarIdentifier] )
{ {
CreateToolbarItem( SUBPIC_TITLE, _NS("Subtitles & On Screen Display Settings"), @"spref_cone_Subtitles_64", showOSDSettings ); CreateToolbarItem( _NS(SUBPIC_TITLE), _NS("Subtitles & On Screen Display Settings"), @"spref_cone_Subtitles_64", showOSDSettings );
} }
else if( [o_itemIdent isEqual: VLCInputSettingToolbarIdentifier] ) else if( [o_itemIdent isEqual: VLCInputSettingToolbarIdentifier] )
{ {
CreateToolbarItem( INPUT_TITLE, _NS("Input & Codec settings"), @"spref_cone_Input_64", showInputSettings ); CreateToolbarItem( _NS(INPUT_TITLE), _NS("Input & Codec settings"), @"spref_cone_Input_64", showInputSettings );
} }
else if( [o_itemIdent isEqual: VLCHotkeysSettingToolbarIdentifier] ) else if( [o_itemIdent isEqual: VLCHotkeysSettingToolbarIdentifier] )
{ {
......
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