mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
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:
parent
2318e48fa8
commit
50e8f49f52
2 changed files with 4 additions and 1 deletions
|
@ -130,6 +130,9 @@ void SpacemouseManager::ManagerFocusOutEvent() {
|
|||
instance->focusOutEvent();
|
||||
}
|
||||
|
||||
void SpacemouseManager::init() {
|
||||
}
|
||||
|
||||
#ifdef HAVE_3DCONNEXIONCLIENT
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue