mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
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);
|
ucstring name = line.substr(firstFilename +1, lastFilename - firstFilename -1);
|
||||||
string subFilename = name.toString();
|
string subFilename = name.toString();
|
||||||
{
|
|
||||||
CIFile testFile;
|
if (!CFile::fileExists(subFilename))
|
||||||
if (!testFile.open(subFilename))
|
|
||||||
{
|
{
|
||||||
// try to open the include file relative to current file
|
// 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);
|
preprocessTextFile(subFilename, outputResult);
|
||||||
|
|
Loading…
Reference in a new issue