summaryrefslogtreecommitdiff
path: root/app/pebble.cpp
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2014-07-07 00:50:22 +0200
committerTomasz Sterna <tomek@xiaoka.com>2014-07-09 01:57:32 +0200
commit54a34201f993c3dc5bff0347349e1727febacf97 (patch)
treec6c651b2d361187e2d73c2e06952d8282701c96d /app/pebble.cpp
parent7283842cbed6a378d430552d327eab4a27775538 (diff)
Implemented org.pebbled service QML interface
Diffstat (limited to 'app/pebble.cpp')
-rw-r--r--app/pebble.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/pebble.cpp b/app/pebble.cpp
index 623621d..b2f4d09 100644
--- a/app/pebble.cpp
+++ b/app/pebble.cpp
@@ -32,12 +32,12 @@
#include <QtQuick>
#include <sailfishapp.h>
-#include "daemonproxy.h"
+#include "pebbledinterface.h"
int main(int argc, char *argv[])
{
// Register Pebble daemon interface object on QML side
- qmlRegisterType<org::pebbled>("org.pebbled", 0, 1, "PebbledInterface");
+ qmlRegisterType<PebbledInterface>("org.pebbled", 0, 1, "PebbledInterface");
return SailfishApp::main(argc, argv);
}