summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:11:47 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:12:17 +0800
commit10495422f1fbbf87d86bc81cee16f671c9f684f5 (patch)
tree4ee7583c88e1129c807903fb057c643db52d6d15
parent0431f094462535d01fce3279f71c86d7786d0b17 (diff)
delete application_name check in tap_shortcut event
because of now homescreen-service emit event to one application, delete the applciation_name check. Bug-AGL: SPEC-1764 Change-Id: Ib3ce3d13aeeb957c762f1826ff3c9d8bf8e95f1c Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
-rw-r--r--app/main.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 71868d8..6f3c3c9 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -92,16 +92,8 @@ int main(int argc, char *argv[])
hs->init(port, token.c_str());
// Set the event handler for Event_TapShortcut which will activate the surface for windowmanager
hs->set_event_handler(LibHomeScreen::Event_TapShortcut, [qwm, myname](json_object *object){
- json_object *appnameJ = nullptr;
- if(json_object_object_get_ex(object, "application_name", &appnameJ))
- {
- const char *appname = json_object_get_string(appnameJ);
- if(myname == appname)
- {
- qDebug("Surface %s got tapShortcut\n", appname);
- qwm->activateSurface(myname);
- }
- }
+ qDebug("Surface %s got tapShortcut\n", myname.toStdString().c_str());
+ qwm->activateSurface(myname);
});
qmlRegisterUncreatableType<NumberType>("NumberType", 1, 0, "NumberType", "Not creatable as it is an enum type");