From 4a451b1cb0cbadba856ed00fed3359e5d7ba663c Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 15 May 2014 09:02:11 +0100 Subject: [PATCH] Added juce namespace to the JUCE_LIVE_CONSTANT macro --- modules/juce_gui_extra/misc/juce_LiveConstantEditor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_extra/misc/juce_LiveConstantEditor.h b/modules/juce_gui_extra/misc/juce_LiveConstantEditor.h index db0e728e73..c293a2156a 100644 --- a/modules/juce_gui_extra/misc/juce_LiveConstantEditor.h +++ b/modules/juce_gui_extra/misc/juce_LiveConstantEditor.h @@ -288,7 +288,7 @@ namespace LiveConstantEditor @endcode */ #define JUCE_LIVE_CONSTANT(initialValue) \ - (LiveConstantEditor::getValue (__FILE__, __LINE__ - 1, initialValue)) + (juce::LiveConstantEditor::getValue (__FILE__, __LINE__ - 1, initialValue)) #else #define JUCE_LIVE_CONSTANT(initialValue) \ (initialValue)