summaryrefslogtreecommitdiff
path: root/metawatch/metawatchplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'metawatch/metawatchplugin.cpp')
-rw-r--r--metawatch/metawatchplugin.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/metawatch/metawatchplugin.cpp b/metawatch/metawatchplugin.cpp
index 751cff9..6a97297 100644
--- a/metawatch/metawatchplugin.cpp
+++ b/metawatch/metawatchplugin.cpp
@@ -29,7 +29,6 @@ QStringList MetaWatchPlugin::drivers()
{
QStringList d;
d << "metawatch-digital";
- d << "metawatch-digital-sim";
return d;
}
@@ -38,9 +37,6 @@ Watch* MetaWatchPlugin::getWatch(const QString& driver, QSettings& settings, QOb
if (driver == "metawatch-digital") {
QBluetoothAddress address(settings.value("address").toString());
return new MetaWatch(address, parent);
- } else if (driver == "metawatch-digital-sim") {
- //return new MetaWatchSimulator(parent);
- return 0;
} else {
return 0;
}