Changed: Replaced DeleteFile (Win32) by NLMISC::CFile::deleteFile

This commit is contained in:
kervala 2010-10-16 19:59:53 +02:00
parent eff593fcf3
commit f8d8a24b83

View file

@ -39,7 +39,6 @@
#include "nel/misc/i_xml.h" #include "nel/misc/i_xml.h"
#include "nel/misc/path.h" #include "nel/misc/path.h"
#include "nel/misc/file.h" #include "nel/misc/file.h"
#include "nel/misc/path.h"
#include "tools.h" #include "tools.h"
#include "../master/ContinentCfg.h" #include "../master/ContinentCfg.h"
@ -86,7 +85,7 @@ void CExport::delIGZone (sint32 x, sint32 y)
{ {
string sZoneName = CExport::getZoneNameFromXY (x, y); string sZoneName = CExport::getZoneNameFromXY (x, y);
sZoneName += ".ig"; sZoneName += ".ig";
if (CFile::deleteFile(deleteFile(sZoneName)) if (CFile::deleteFile(sZoneName))
{ {
CTools::chdir (_ExeDir); CTools::chdir (_ExeDir);
string sTmp = string(" zone ") + sZoneName + " deleted"; string sTmp = string(" zone ") + sZoneName + " deleted";