Changed: Don't display an error if file doesn't exist
--HG-- branch : develop
This commit is contained in:
parent
9f934f7765
commit
589be3bbbb
1 changed files with 8 additions and 4 deletions
|
@ -2972,12 +2972,16 @@ void preprocessTextFile(const std::string &filename,
|
|||
|
||||
ucstring name = line.substr(firstFilename +1, lastFilename - firstFilename -1);
|
||||
string subFilename = name.toString();
|
||||
|
||||
if (!CFile::fileExists(subFilename))
|
||||
{
|
||||
CIFile testFile;
|
||||
if (!testFile.open(subFilename))
|
||||
{
|
||||
// try to open the include file relative to current file
|
||||
subFilename = CFile::getPath(filename)+subFilename;
|
||||
subFilename = CFile::getPath(filename)+subFilename;
|
||||
|
||||
if (!CFile::fileExists(subFilename))
|
||||
{
|
||||
nlwarning("Unable to open %s", subFilename.c_str());
|
||||
subFilename.clear();
|
||||
}
|
||||
}
|
||||
preprocessTextFile(subFilename, outputResult);
|
||||
|
|
Loading…
Reference in a new issue