diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/config.tests/libhomescreen/libhomescreen.pro | 2 | ||||
-rw-r--r-- | app/config.tests/qlibwindowmanager/qlibwindowmanager.pro | 2 | ||||
-rw-r--r-- | app/main.cpp | 7 |
3 files changed, 6 insertions, 5 deletions
diff --git a/app/config.tests/libhomescreen/libhomescreen.pro b/app/config.tests/libhomescreen/libhomescreen.pro index eb4e8f3..7d43112 100644 --- a/app/config.tests/libhomescreen/libhomescreen.pro +++ b/app/config.tests/libhomescreen/libhomescreen.pro @@ -2,4 +2,4 @@ SOURCES = libhomescreen.cpp CONFIG -= qt CONFIG += link_pkgconfig -PKGCONFIG += homescreen +PKGCONFIG += libhomescreen diff --git a/app/config.tests/qlibwindowmanager/qlibwindowmanager.pro b/app/config.tests/qlibwindowmanager/qlibwindowmanager.pro index 96721e8..cb51d98 100644 --- a/app/config.tests/qlibwindowmanager/qlibwindowmanager.pro +++ b/app/config.tests/qlibwindowmanager/qlibwindowmanager.pro @@ -1,5 +1,5 @@ SOURCES = qlibwindowmanager.cpp -CONFIG -= qt +CONFIG += qt CONFIG += link_pkgconfig PKGCONFIG += qlibwindowmanager diff --git a/app/main.cpp b/app/main.cpp index a75e779..856acfc 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -55,10 +55,11 @@ int main(int argc, char *argv[]) QQmlApplicationEngine engine; QQmlContext *context = engine.rootContext(); QUrl bindingAddress; + int port = 0; QString secret; if (positionalArguments.length() == 2) { - int port = positionalArguments.takeFirst().toInt(); - QString secret = positionalArguments.takeFirst(); + port = positionalArguments.takeFirst().toInt(); + secret = positionalArguments.takeFirst(); bindingAddress.setScheme(QStringLiteral("ws")); bindingAddress.setHost(QStringLiteral("localhost")); bindingAddress.setPort(port); @@ -92,7 +93,7 @@ int main(int argc, char *argv[]) // HomeScreen LibHomeScreen* hs = new LibHomeScreen(); std::string token = secret.toStdString(); - hs->init(port, secret.to); + 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; |