1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

Introjucer: sorted out a win32 filename handling issue.

This commit is contained in:
jules 2013-10-28 12:37:12 +00:00
parent 03e14b7851
commit 63587c007b

View file

@ -724,8 +724,8 @@ void EnabledModuleList::addModule (const File& moduleManifestFile, bool copyLoca
shouldShowAllModuleFilesInProject (moduleID) = true;
shouldCopyModuleFilesLocally (moduleID) = copyLocally;
String path (moduleManifestFile.getParentDirectory().getParentDirectory()
.getRelativePathFrom (project.getProjectFolder()));
String path (FileHelpers::getRelativePathFrom (moduleManifestFile.getParentDirectory().getParentDirectory(),
project.getProjectFolder()));
for (Project::ExporterIterator exporter (project); exporter.next();)
exporter->getPathForModuleValue (moduleID) = path;