From 2952b52f88966a20535b54fa13da9ec6bc2be4dd Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 6 Dec 2016 17:21:31 +0000 Subject: [PATCH] Renamed instances of FileHelpers to MacFileHelpers in iOS implementation in juce_mac_Files.mm --- modules/juce_core/native/juce_mac_Files.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_core/native/juce_mac_Files.mm b/modules/juce_core/native/juce_mac_Files.mm index e3e5baf2bc..37a9e25690 100644 --- a/modules/juce_core/native/juce_mac_Files.mm +++ b/modules/juce_core/native/juce_mac_Files.mm @@ -186,12 +186,12 @@ File File::getSpecialLocation (const SpecialLocationType type) case userHomeDirectory: resultPath = nsStringToJuce (NSHomeDirectory()); break; #if JUCE_IOS - case userDocumentsDirectory: resultPath = FileHelpers::getIOSSystemLocation (NSDocumentDirectory); break; - case userDesktopDirectory: resultPath = FileHelpers::getIOSSystemLocation (NSDesktopDirectory); break; + case userDocumentsDirectory: resultPath = MacFileHelpers::getIOSSystemLocation (NSDocumentDirectory); break; + case userDesktopDirectory: resultPath = MacFileHelpers::getIOSSystemLocation (NSDesktopDirectory); break; case tempDirectory: { - File tmp (FileHelpers::getIOSSystemLocation (NSCachesDirectory)); + File tmp (MacFileHelpers::getIOSSystemLocation (NSCachesDirectory)); tmp = tmp.getChildFile (juce_getExecutableFile().getFileNameWithoutExtension()); tmp.createDirectory(); return tmp.getFullPathName();