diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2018-07-05 14:30:25 +0200 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2018-07-10 19:21:41 +0200 |
commit | d009b2e3665ab49ce8885a7d1f59d67bdaf4cd7e (patch) | |
tree | 38337c044e2c50989ffc98cc7c5d2b9598f36eca /app/main.cpp | |
parent | 9b2c0778e6b83591cbad1d9c76cbcad2186512d9 (diff) |
WIP better handling for slider creation
The creation of sliders is now using a template instead of a string
computation.
Also fixed some indentation and trailing spaces issues.
Change-Id: Ieb1d9f953d61fa1bac46bf1ab6904e67d09a3fa9
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'app/main.cpp')
-rw-r--r-- | app/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp index 60b2951..52a0ff9 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -70,8 +70,9 @@ int main(int argc, char *argv[]) bindingAddress.setQuery(query); QQmlContext *context = engine.rootContext(); context->setContextProperty(QStringLiteral("bindingAddress"), bindingAddress); + qDebug() << "Connect to: " << bindingAddress; + - std::string token = secret.toStdString(); #ifndef NATIVE_BUILD LibHomeScreen* hs = new LibHomeScreen(); QLibWindowmanager* qwm = new QLibWindowmanager(); @@ -91,6 +92,7 @@ int main(int argc, char *argv[]) }); // HomeScreen + std::string token = secret.toStdString(); 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){ |