]> git.saurik.com Git - wxWidgets.git/commitdiff
modif time of FS inet and FS mem files is not wxDateTime::Now, not wxDateTime::Today
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Feb 2000 08:37:46 +0000 (08:37 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Feb 2000 08:37:46 +0000 (08:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fs_inet.cpp
src/common/fs_mem.cpp

index 05bf75c3486c06ef5217b36229fe837e56356c52..af90f422350048cb63bd6cccdd9a5dabf7d9e64d 100644 (file)
@@ -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;
 }
index adee5e641efff0771b2b120412b62e8db851625b..1881dce9a82c5089dc7f74a35c2cc5bd2dcfb159 100644 (file)
@@ -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()