aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-17 10:42:48 -0500
committerKen Moore <ken@ixsystems.com>2016-11-17 10:42:48 -0500
commitf56665661e03a6a988451af0544c5866a6dfd88e (patch)
treed52803daf24a42c544a33bbb7e51f9b6f03c5192 /src-qt5
parentAdd in the beginnings of a new backend class for managing input devices (LInp... (diff)
downloadlumina-f56665661e03a6a988451af0544c5866a6dfd88e.tar.gz
lumina-f56665661e03a6a988451af0544c5866a6dfd88e.tar.bz2
lumina-f56665661e03a6a988451af0544c5866a6dfd88e.zip
Oops - make sure the LInput funcions are public and static
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/libLumina/LInputDevice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/LInputDevice.h b/src-qt5/core/libLumina/LInputDevice.h
index efbc41e7..1293ea92 100644
--- a/src-qt5/core/libLumina/LInputDevice.h
+++ b/src-qt5/core/libLumina/LInputDevice.h
@@ -36,7 +36,8 @@ private:
//Static functions for overall management
class LInput{
- QList<LInputDevice*> listDevices(); //NOTE: Make sure you "free()" all the LInputDevice objects when finished
+ public:
+ static QList<LInputDevice*> listDevices(); //NOTE: Make sure you "free()" all the LInputDevice objects when finished
};
bgstack15