summaryrefslogtreecommitdiff
path: root/metawatch/metawatchplugin.cpp
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2011-10-15 23:57:14 +0200
committerJavier S. Pedro <maemo@javispedro.com>2011-10-15 23:57:14 +0200
commitde66281645cea6073659ff4d9f534a2f403588cc (patch)
tree1183f1242d8b7be061668e903cd51867b696e438 /metawatch/metawatchplugin.cpp
parentf0052223da8290fb9273c4901f6309e612ea55ff (diff)
downloadsowatch-de66281645cea6073659ff4d9f534a2f403588cc.tar.gz
sowatch-de66281645cea6073659ff4d9f534a2f403588cc.zip
Moving MetaWatchDigital stuff into its own class
Diffstat (limited to 'metawatch/metawatchplugin.cpp')
-rw-r--r--metawatch/metawatchplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/metawatch/metawatchplugin.cpp b/metawatch/metawatchplugin.cpp
index 23a4f63..5744196 100644
--- a/metawatch/metawatchplugin.cpp
+++ b/metawatch/metawatchplugin.cpp
@@ -1,6 +1,6 @@
#include <QtGui/QFontDatabase>
#include <QtConnectivity/QBluetoothAddress>
-#include "metawatch.h"
+#include "metawatchdigital.h"
#include "metawatchsimulator.h"
#include "metawatchplugin.h"
@@ -36,7 +36,7 @@ Watch* MetaWatchPlugin::getWatch(const QString& driver, QSettings& settings, QOb
{
if (driver == "metawatch-digital") {
QBluetoothAddress address(settings.value("address").toString());
- return new MetaWatch(address, &settings, parent);
+ return new MetaWatchDigital(address, &settings, parent);
} else {
return 0;
}