summaryrefslogtreecommitdiffstats
path: root/src/input/backend/logicaldevice_p.h
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-04-13 08:17:16 +0200
committerSean Harmer <sean.harmer@kdab.com>2016-04-14 08:34:37 +0000
commit1d4cafb00ef78494dea7d24bc3ec3f72edc0f78b (patch)
tree69ed8d57d54e7fcb31e50b6a23b60803eef62a25 /src/input/backend/logicaldevice_p.h
parent69d2b5719180095a1601d81ebc8ed7b81b08e58b (diff)
LogicalDevice: use m_enabled member from QBackendNode
Change-Id: Ibc00f888187b65ce5b589061703466d51dc09561 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/backend/logicaldevice_p.h')
-rw-r--r--src/input/backend/logicaldevice_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input/backend/logicaldevice_p.h b/src/input/backend/logicaldevice_p.h
index 426df9400..1c26361ba 100644
--- a/src/input/backend/logicaldevice_p.h
+++ b/src/input/backend/logicaldevice_p.h
@@ -68,7 +68,6 @@ public:
LogicalDevice();
void updateFromPeer(Qt3DCore::QNode *peer) Q_DECL_OVERRIDE;
void cleanup();
- inline bool isEnabled() const { return m_enabled; }
inline QVector<Qt3DCore::QNodeId> axes() const { return m_axes; }
inline QVector<Qt3DCore::QNodeId> actions() const { return m_actions; }
@@ -80,7 +79,6 @@ private:
QVector<Qt3DCore::QNodeId> m_axes;
QVector<Qt3DCore::QNodeId> m_actions;
- bool m_enabled;
};