diff options
author | 2018-10-30 16:38:55 +0800 | |
---|---|---|
committer | 2018-10-30 16:38:55 +0800 | |
commit | e0664257cc905d13331ba82c60fb8f3f089d9ed6 (patch) | |
tree | 260dc00cc2d1c56658c7052557b7373f704b77d7 | |
parent | bd69ed8140ce2631bad7b49d65c4cb14c0c1944b (diff) |
QString to char*sandbox/wangzhiqiang/private_event
-rw-r--r-- | app/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp index 948c8a1..844913f 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -98,7 +98,7 @@ 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){ - qDebug("Surface %s got tapShortcut\n", myname); + qDebug("Surface %s got tapShortcut\n", myname.toStdString().c_str()); qwm->activateSurface(myname); }); #endif |