mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
Fixed: Display human readable version of file timestamps
This commit is contained in:
parent
3b1e567e18
commit
83b3939f44
1 changed files with 2 additions and 2 deletions
|
@ -1517,8 +1517,8 @@ void CPatchManager::applyDate (const string &sFilename, uint32 nDate)
|
|||
// _utimbuf utb;
|
||||
// utb.actime = utb.modtime = nDate;
|
||||
setRWAccess(sFilename, false);
|
||||
ucstring s = CI18N::get("uiChangeDate") + " " + NLMISC::CFile::getFilename(sFilename) + " " + toString(NLMISC::CFile::getFileModificationDate (sFilename)) +
|
||||
" -> " + toString(nDate);
|
||||
ucstring s = CI18N::get("uiChangeDate") + " " + NLMISC::CFile::getFilename(sFilename) + " " + timestampToHumanReadable(NLMISC::CFile::getFileModificationDate (sFilename)) +
|
||||
" -> " + timestampToHumanReadable(nDate);
|
||||
setState(true,s);
|
||||
|
||||
if (!NLMISC::CFile::setFileModificationDate(sFilename, nDate))
|
||||
|
|
Loading…
Reference in a new issue