summaryrefslogtreecommitdiff
path: root/rockworkd/core.cpp
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2016-02-12 01:09:19 +0100
committerAndrew Branson <andrew.branson@cern.ch>2016-02-12 01:09:19 +0100
commit0d5ae0b50811736713bda642489d038759883589 (patch)
treef3b94d7fed375b60c28762c0f4631459749daa60 /rockworkd/core.cpp
parent29aaea2d80a9eb1715b6cddfac2d2aacf76358bd (diff)
Compiling
Sailfish platform integration files created and bluetooth debug tweaked to build.
Diffstat (limited to 'rockworkd/core.cpp')
-rw-r--r--rockworkd/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rockworkd/core.cpp b/rockworkd/core.cpp
index 38a25c5..eb98dfd 100644
--- a/rockworkd/core.cpp
+++ b/rockworkd/core.cpp
@@ -3,7 +3,7 @@
#include "pebblemanager.h"
#include "dbusinterface.h"
-#include "platformintegration/ubuntu/ubuntuplatform.h"
+#include "platformintegration/sailfish/sailfishplatform.h"
#ifdef ENABLE_TESTING
#include "platformintegration/testing/testingplatform.h"
#endif
@@ -41,7 +41,7 @@ void Core::init()
#ifdef ENABLE_TESTING
m_platform = new TestingPlatform(this);
#else
- m_platform = new UbuntuPlatform(this);
+ m_platform = new SailfishPlatform(this);
#endif
m_pebbleManager = new PebbleManager(this);