diff --git a/src/UserInterface/ProjectionEditor.cpp b/src/UserInterface/ProjectionEditor.cpp index 0f87d4f..e102c85 100644 --- a/src/UserInterface/ProjectionEditor.cpp +++ b/src/UserInterface/ProjectionEditor.cpp @@ -10,12 +10,6 @@ ProjectionEditor::ProjectionEditor(){ enable(); } -ProjectionEditor::~ProjectionEditor(){ - clearJoints(); - surfaceManager = 0; - disable(); -} - void ProjectionEditor::registerAppEvents(){ ofAddListener(ofEvents().messageEvent, this, &ProjectionEditor::gotMessage); } diff --git a/src/UserInterface/ProjectionEditor.h b/src/UserInterface/ProjectionEditor.h index 5eb5776..ecaeb93 100644 --- a/src/UserInterface/ProjectionEditor.h +++ b/src/UserInterface/ProjectionEditor.h @@ -10,7 +10,6 @@ class ProjectionEditor { public: ProjectionEditor(); - ~ProjectionEditor(); void registerAppEvents(); void unregisterAppEvents(); diff --git a/src/UserInterface/TextureEditor.cpp b/src/UserInterface/TextureEditor.cpp index 8469428..973c8e3 100644 --- a/src/UserInterface/TextureEditor.cpp +++ b/src/UserInterface/TextureEditor.cpp @@ -7,10 +7,6 @@ TextureEditor::TextureEditor(){ clear(); } -TextureEditor::~TextureEditor(){ - clear(); -} - void TextureEditor::update(){ if(surface == 0){ return; diff --git a/src/UserInterface/TextureEditor.h b/src/UserInterface/TextureEditor.h index ac6e823..85b1a8b 100644 --- a/src/UserInterface/TextureEditor.h +++ b/src/UserInterface/TextureEditor.h @@ -14,7 +14,6 @@ class TextureEditor { public: TextureEditor(); - ~TextureEditor(); void update(); // Maybe the Application pointer would make sense there. Not sure yet. void mousePressed(ofMouseEventArgs & args);