Commit 4d49ad69 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* added numerous casts to silence compilation warnings introduced with const...

* added numerous casts to silence compilation warnings introduced with const chars in module_config_t. still needs severe testing on other Macs.
parent 721f2cb1
...@@ -442,11 +442,11 @@ static VLCTreeItem *o_root_item = nil; ...@@ -442,11 +442,11 @@ static VLCTreeItem *o_root_item = nil;
[p_subcategory_item->o_children addObject:[[VLCTreeItem alloc] [p_subcategory_item->o_children addObject:[[VLCTreeItem alloc]
initWithName:[[VLCMain sharedInstance] initWithName:[[VLCMain sharedInstance]
localizedString: p_module->psz_shortname ? localizedString: (char *)p_module->psz_shortname ?
p_module->psz_shortname : p_module->psz_object_name ] (char *)p_module->psz_shortname : (char *)p_module->psz_object_name ]
withTitle:[[VLCMain sharedInstance] withTitle:[[VLCMain sharedInstance]
localizedString: p_module->psz_longname ? localizedString: (char *)p_module->psz_longname ?
p_module->psz_longname : p_module->psz_object_name ] (char *)p_module->psz_longname : (char *)p_module->psz_object_name ]
withHelp: @"" withHelp: @""
ID: p_module->i_object_id ID: p_module->i_object_id
parent:p_subcategory_item parent:p_subcategory_item
......
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