From a1e433e189e91614a88e3f3527613a8a8f9a55aa Mon Sep 17 00:00:00 2001 From: atlante45 Date: Wed, 4 Sep 2013 10:24:10 -0700 Subject: [PATCH] Updated Application destructor --- interface/src/Application.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 494a1e6976..5fbf6f928e 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -237,6 +237,12 @@ Application::Application(int& argc, char** argv, timeval &startup_time) : Application::~Application() { NodeList::getInstance()->removeHook(&_voxels); NodeList::getInstance()->removeHook(this); + + delete _oculusProgram; + delete _settings; + delete _networkAccessManager; + delete _followMode; + delete _glWidget; } void Application::initializeGL() {