mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
Added a button size option to the PreferencesPanel. Added an operator for writing Strings to std::wcout. Fixed a clipping error in audio float to int conversion. Made the introjucer cope with backslashes in filenames when used on unix.
This commit is contained in:
parent
025b20bdc3
commit
a493cfee4d
10 changed files with 86 additions and 57 deletions
|
|
@ -242,7 +242,8 @@ const File Project::resolveFilename (String filename) const
|
|||
if (filename.isEmpty())
|
||||
return File::nonexistent;
|
||||
|
||||
filename = replacePreprocessorDefs (getPreprocessorDefs(), filename);
|
||||
filename = replacePreprocessorDefs (getPreprocessorDefs(), filename)
|
||||
.replaceCharacter ('\\', '/');
|
||||
|
||||
if (File::isAbsolutePath (filename))
|
||||
return File (filename);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue