X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Flibhomescreen.cpp;h=2f3ef447ec64fbe78b74536573f34bde70404c1f;hb=eabd10ffe2f9cb5c31262ad3152b037eb2286857;hp=42ab8b135b26521f09a9cf7ddde1c2ab86929cb3;hpb=06a2777ce769346ba85aee9f38ccb237a2d72915;p=src%2Flibhomescreen.git diff --git a/src/libhomescreen.cpp b/src/libhomescreen.cpp index 42ab8b1..2f3ef44 100644 --- a/src/libhomescreen.cpp +++ b/src/libhomescreen.cpp @@ -441,25 +441,15 @@ void LibHomeScreen::on_event(void *closure, const char *event, struct afb_wsj1_m if (strcasecmp(event_only, LibHomeScreen::event_list[0].c_str()) == 0) { auto i = this->handlers.find(Event_TapShortcut); - - struct json_object *json_application_name = json_object_object_get(json_data, "application_name"); - const char* application_name = json_object_get_string(json_application_name); - if ( i != this->handlers.end() ) { - i->second(application_name); + i->second(json_data); } } else if (strcasecmp(event_only, LibHomeScreen::event_list[1].c_str()) == 0) { - auto i = this->handlers.find(Event_OnScreenMessage); - - struct json_object *json_display_message = json_object_object_get(json_data, "display_message"); - const char* display_message = json_object_get_string(json_display_message); - if ( i != this->handlers.end() ) { - i->second(display_message); + i->second(json_data); } - } json_object_put(ev_contents);