diff options
author | Sebastian Leske <sebastian.leske@sleske.name> | 2016-12-08 20:23:49 +0100 |
---|---|---|
committer | Sebastian Leske <sebastian.leske@sleske.name> | 2016-12-08 21:01:57 +0100 |
commit | 08e88e82b639a65df04e284b4ae6f1dc35aceb8f (patch) | |
tree | 62f165bcaf1b2bd68b59609a86586603d3469370 /navit/graphics | |
parent | b8ec86052d0147d812e206f6eb62badb32ea4537 (diff) | |
download | navit-08e88e82b639a65df04e284b4ae6f1dc35aceb8f.tar.gz |
Fix:core:Fix iPhone build broken by plugin refactoring.R7131
Finish refactoring 'type' -> 'category'. I overlooked the Objective C
code for iPhone.
Diffstat (limited to 'navit/graphics')
-rw-r--r-- | navit/graphics/cocoa/graphics_cocoa.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/navit/graphics/cocoa/graphics_cocoa.m b/navit/graphics/cocoa/graphics_cocoa.m index 154ea6901..16c879bd7 100644 --- a/navit/graphics/cocoa/graphics_cocoa.m +++ b/navit/graphics/cocoa/graphics_cocoa.m @@ -800,6 +800,6 @@ void plugin_init(void) { dbg(0,"enter\n"); - plugin_register_graphics_type("cocoa", graphics_cocoa_new); - plugin_register_event_type("cocoa", event_cocoa_new); + plugin_register_category_graphics("cocoa", graphics_cocoa_new); + plugin_register_category_event("cocoa", event_cocoa_new); } |