From 583fbb03d3e32096b03f01b136fe2a2f4695d86c Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 7 Jun 2012 13:01:02 +0100 Subject: [PATCH] Avoided a name clash with old Carbon headers. --- modules/juce_core/native/juce_osx_ObjCHelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_osx_ObjCHelpers.h b/modules/juce_core/native/juce_osx_ObjCHelpers.h index 449517e08f..6f64370592 100644 --- a/modules/juce_core/native/juce_osx_ObjCHelpers.h +++ b/modules/juce_core/native/juce_osx_ObjCHelpers.h @@ -135,7 +135,7 @@ struct ObjCClass private: static String getRandomisedName (const char* root) { - return root + String::toHexString (Random::getSystemRandom().nextInt64()); + return root + String::toHexString (juce::Random::getSystemRandom().nextInt64()); } JUCE_DECLARE_NON_COPYABLE (ObjCClass);