diff --git a/Source/Plugins/ExampleProcessor/ExampleEditor.cpp b/Source/Plugins/ExampleProcessor/ExampleEditor.cpp
index d6038061a9e065b3512f69c5660619090db4977f..2f9d152b0c3feea3d089b262e0be6238582a3b35 100644
--- a/Source/Plugins/ExampleProcessor/ExampleEditor.cpp
+++ b/Source/Plugins/ExampleProcessor/ExampleEditor.cpp
@@ -36,6 +36,10 @@ ExampleEditor::ExampleEditor(GenericProcessor* parentNode, bool useDefaultParame
 	addAndMakeVisible(exampleButton);
 }
 
+ExampleEditor::~ExampleEditor()
+{
+}
+
 /**
 The listener methods that reacts to the button click. The same method is called for all buttons
 on the editor, so the button variable, which cointains a pointer to the button that called the method
diff --git a/Source/Plugins/ExampleProcessor/Makefile.example b/Source/Plugins/ExampleProcessor/Makefile.example
index 3174430a0d5693c81798a934b2576c85d5c5f795..973d9274ec088e46ba03fcfc6a3d649ae3d2ca65 100644
--- a/Source/Plugins/ExampleProcessor/Makefile.example
+++ b/Source/Plugins/ExampleProcessor/Makefile.example
@@ -10,12 +10,6 @@ VPATH := $(SOURCE_DIRS)
 SRC := $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.cpp))
 OBJ := $(addprefix $(OBJDIR)/,$(notdir $(SRC:.cpp=.o)))
 
-#Library paths for OSX, can be removed if no external libraries are needed
-ifeq ($(OS),Darwin)
-CXXFLAGS := $(CXXFLAGS) -I/opt/local/include 
-LDFLAGS := $(LDFLAGS) -L/opt/local/lib  
-endif
-
 #Extra macros and libraries needed by the plugin
 #CXXFLAGS := $(CXXFLAGS) -D EXAMPLE_MACRO
 #LDFLAGS := $(LDFLAGS) -lExampleLib