SpacemouseManager Moved stub init into cpp file.

This should fix the windows build.  For some reason
the linker was having a problem resolving this.
This commit is contained in:
Anthony J. Thibault 2015-11-05 10:54:50 -08:00
parent 2318e48fa8
commit 50e8f49f52
2 changed files with 4 additions and 1 deletions

View file

@ -130,6 +130,9 @@ void SpacemouseManager::ManagerFocusOutEvent() {
instance->focusOutEvent();
}
void SpacemouseManager::init() {
}
#ifdef HAVE_3DCONNEXIONCLIENT
#ifdef Q_OS_WIN

View file

@ -25,7 +25,7 @@ class SpacemouseManager : public QObject {
public:
static SpacemouseManager& getInstance();
void ManagerFocusOutEvent();
void init() {};
void init();
void destroy() {};
bool Is3dmouseAttached() { return false; };
public slots: