From: <man...@us...> - 2014-10-12 08:35:53
|
Revision: 4428 http://sourceforge.net/p/modplug/code/4428 Author: manxorist Date: 2014-10-12 08:35:43 +0000 (Sun, 12 Oct 2014) Log Message: ----------- [Ref] Fix some #include paths that do not work with a more restricted include path setting. Modified Paths: -------------- trunk/OpenMPT/mptrack/MainFrm.cpp trunk/OpenMPT/mptrack/Moddoc.cpp trunk/OpenMPT/mptrack/StreamEncoder.h Modified: trunk/OpenMPT/mptrack/MainFrm.cpp =================================================================== --- trunk/OpenMPT/mptrack/MainFrm.cpp 2014-10-11 23:24:33 UTC (rev 4427) +++ trunk/OpenMPT/mptrack/MainFrm.cpp 2014-10-12 08:35:43 UTC (rev 4428) @@ -35,7 +35,7 @@ #include "ExceptionHandler.h" #include "PatternClipboard.h" #include "MemoryMappedFile.h" -#include "soundlib/FileReader.h" +#include "../soundlib/FileReader.h" #include "../common/Profiler.h" #include "FileDialog.h" #include <HtmlHelp.h> Modified: trunk/OpenMPT/mptrack/Moddoc.cpp =================================================================== --- trunk/OpenMPT/mptrack/Moddoc.cpp 2014-10-11 23:24:33 UTC (rev 4427) +++ trunk/OpenMPT/mptrack/Moddoc.cpp 2014-10-12 08:35:43 UTC (rev 4428) @@ -34,7 +34,7 @@ #else #include "MemoryMappedFile.h" #endif -#include "soundlib/FileReader.h" +#include "../soundlib/FileReader.h" #include <shlwapi.h> #include "FileDialog.h" Modified: trunk/OpenMPT/mptrack/StreamEncoder.h =================================================================== --- trunk/OpenMPT/mptrack/StreamEncoder.h 2014-10-11 23:24:33 UTC (rev 4427) +++ trunk/OpenMPT/mptrack/StreamEncoder.h 2014-10-12 08:35:43 UTC (rev 4428) @@ -12,8 +12,8 @@ #include "Settings.h" -#include "soundlib/Tagging.h" -#include "soundlib/SampleFormat.h" +#include "../soundlib/Tagging.h" +#include "../soundlib/SampleFormat.h" #include <iosfwd> #include <string> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |