From a811a80884a68087f54d7e1c60532b89588ce9fd Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 1 Oct 2013 13:41:36 +0100 Subject: [PATCH] (Fixed a silly typo in the last commit) --- modules/juce_core/native/juce_mac_Files.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_mac_Files.mm b/modules/juce_core/native/juce_mac_Files.mm index 503efb7492..c55272415c 100644 --- a/modules/juce_core/native/juce_mac_Files.mm +++ b/modules/juce_core/native/juce_mac_Files.mm @@ -392,13 +392,14 @@ bool DirectoryIterator::NativeIterator::next (String& filenameFound, //============================================================================== -bool JUCE_CALLTYPE Process::openDocument (const String& fileName, const String& /*parameters*/) +bool JUCE_CALLTYPE Process::openDocument (const String& fileName, const String& parameters) { JUCE_AUTORELEASEPOOL { NSURL* filenameAsURL = [NSURL URLWithString: juceStringToNS (fileName)]; #if JUCE_IOS + (void) parameters; return [[UIApplication sharedApplication] openURL: filenameAsURL]; #else NSWorkspace* workspace = [NSWorkspace sharedWorkspace];