diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 6d79510cb3..3cfb10c7bb 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -33,7 +33,6 @@ #include #include #include -#include #include #include #include @@ -951,11 +950,11 @@ void Application::initializeGL() { _entityEditSender.initialize(_enableProcessOctreeThread); // call our timer function every second - connect(&checkFPStimer, &QTimer::timeout, &Application::checkFPS); + connect(&checkFPStimer, &QTimer::timeout, this, &Application::checkFPS); checkFPStimer.start(1000); // call our idle function whenever we can - connect(&idleTimer, &QTimer::timeout, &Application::idle); + connect(&idleTimer, &QTimer::timeout, this, &Application::idle); idleTimer.start(TARGET_SIM_FRAME_PERIOD_MS); _idleLoopStdev.reset(); diff --git a/interface/src/Application.h b/interface/src/Application.h index 23b173f1ea..c315dde0ea 100644 --- a/interface/src/Application.h +++ b/interface/src/Application.h @@ -37,7 +37,6 @@ #include #include - #include "Bookmarks.h" #include "Camera.h" #include "Environment.h" @@ -119,7 +118,6 @@ public: QSize getDeviceSize() const; bool hasFocus() const; PickRay computePickRay() const; - PickRay computeViewPickRay(float xRatio, float yRatio) const; bool isThrottleRendering() const;