diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-17 10:42:48 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-17 10:42:48 -0500 |
commit | f56665661e03a6a988451af0544c5866a6dfd88e (patch) | |
tree | d52803daf24a42c544a33bbb7e51f9b6f03c5192 /src-qt5 | |
parent | Add in the beginnings of a new backend class for managing input devices (LInp... (diff) | |
download | lumina-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.h | 3 |
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 }; |