[DEV] integrate the new interface of URI and file

This commit is contained in:
Edouard DUPIN 2018-09-24 23:26:06 +02:00
parent be5702b029
commit 0087c41321

View File

@ -84,7 +84,7 @@ bool exml::internal::Document::store(const etk::Uri& _uri) {
EXML_ERROR("Can not open (r) the file : " << _uri); EXML_ERROR("Can not open (r) the file : " << _uri);
return false; return false;
} }
fileIo->fileWriteAll(createData); fileIo->writeAll(createData);
fileIo->close(); fileIo->close();
return true; return true;
} }