mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Compilation
This commit is contained in:
parent
3c1ff1f14b
commit
5152d83666
2 changed files with 6 additions and 6 deletions
|
@ -289,7 +289,7 @@ bool CForm::insertParent (uint before, const std::string &filename, CForm *paren
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Output an error
|
// Output an error
|
||||||
warning (false, "insertParent", "Can't insert parent form (%s) that has not the same DFN.", filename);
|
warning (false, "insertParent", "Can't insert parent form (%s) that has not the same DFN.", filename.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -171,7 +171,7 @@ CFormDfn *CFormLoader::loadFormDfn (const std::string &filename, bool forceLoad)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Output error
|
// Output error
|
||||||
warning (false, "loadFormDfn", "Can't open the form file (%s).", filename);
|
warning (false, "loadFormDfn", "Can't open the form file (%s).", filename.c_str());
|
||||||
|
|
||||||
// Delete the formDfn
|
// Delete the formDfn
|
||||||
delete formDfn;
|
delete formDfn;
|
||||||
|
@ -182,7 +182,7 @@ CFormDfn *CFormLoader::loadFormDfn (const std::string &filename, bool forceLoad)
|
||||||
catch (const Exception &e)
|
catch (const Exception &e)
|
||||||
{
|
{
|
||||||
// Output error
|
// Output error
|
||||||
warning (false, "loadFormDfn", "Error while loading the form (%s): %s", filename, e.what());
|
warning (false, "loadFormDfn", "Error while loading the form (%s): %s", filename.c_str(), e.what());
|
||||||
|
|
||||||
// Delete the formDfn
|
// Delete the formDfn
|
||||||
delete formDfn;
|
delete formDfn;
|
||||||
|
@ -257,7 +257,7 @@ UForm *CFormLoader::loadForm (const std::string &filename)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Output error
|
// Output error
|
||||||
warning (false, "loadForm", "Can't open the form file (%s).", filename);
|
warning (false, "loadForm", "Can't open the form file (%s).", filename.c_str());
|
||||||
|
|
||||||
// Delete the form
|
// Delete the form
|
||||||
delete form;
|
delete form;
|
||||||
|
@ -279,7 +279,7 @@ UForm *CFormLoader::loadForm (const std::string &filename)
|
||||||
catch (const Exception &e)
|
catch (const Exception &e)
|
||||||
{
|
{
|
||||||
// Output error
|
// Output error
|
||||||
warning (false, "loadForm", "Error while loading the form (%s): %s", filename, e.what());
|
warning (false, "loadForm", "Error while loading the form (%s): %s", filename.c_str(), e.what());
|
||||||
|
|
||||||
// Delete the form
|
// Delete the form
|
||||||
delete form;
|
delete form;
|
||||||
|
@ -317,7 +317,7 @@ void CFormLoader::warning (bool exception, const std::string &function, const ch
|
||||||
va_end( args );
|
va_end( args );
|
||||||
|
|
||||||
// Set the warning
|
// Set the warning
|
||||||
NLGEORGES::warning (exception, "(CFormLoader::%s) : %s", function, buffer);
|
NLGEORGES::warning (exception, "(CFormLoader::%s) : %s", function.c_str(), buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
|
|
Loading…
Reference in a new issue