mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Linux build fixes.
This commit is contained in:
parent
188299adb9
commit
34201bf815
4 changed files with 10 additions and 10 deletions
|
|
@ -81,11 +81,11 @@ void FileChooser::showPlatformDialog (Array<File>& results,
|
|||
|
||||
if (status == 0)
|
||||
{
|
||||
String resultString (String::fromUTF8 ((const char*) result.getData(), result.getDataSize()));
|
||||
String resultString (String::fromUTF8 (result.getData(), result.getDataSize()));
|
||||
StringArray tokens;
|
||||
|
||||
if (selectMultipleFiles)
|
||||
tokens.addTokens (resultString, separator, 0);
|
||||
tokens.addTokens (resultString, separator, String::empty);
|
||||
else
|
||||
tokens.add (resultString);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue