diff --git a/src/common/fs_inet.cpp b/src/common/fs_inet.cpp index 05bf75c348..af90f42235 100644 --- a/src/common/fs_inet.cpp +++ b/src/common/fs_inet.cpp @@ -146,7 +146,7 @@ wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxStri right, info->GetMime(), GetAnchor(location), - wxDateTime::Today()); + wxDateTime::Now()); } else return (wxFSFile*) NULL; } diff --git a/src/common/fs_mem.cpp b/src/common/fs_mem.cpp index adee5e641e..1881dce9a8 100644 --- a/src/common/fs_mem.cpp +++ b/src/common/fs_mem.cpp @@ -37,7 +37,7 @@ class MemFSHashObj : public wxObject m_Data = new char[len]; memcpy(m_Data, data, len); m_Len = len; - m_Time = wxDateTime::Today(); + m_Time = wxDateTime::Now(); } MemFSHashObj(wxMemoryOutputStream& stream) @@ -45,7 +45,7 @@ class MemFSHashObj : public wxObject m_Len = stream.GetSize(); m_Data = new char[m_Len]; stream.CopyTo(m_Data, m_Len); - m_Time = wxDateTime::Today(); + m_Time = wxDateTime::Now(); } ~MemFSHashObj()