]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fs_inet.cpp
No significant change
[wxWidgets.git] / src / common / fs_inet.cpp
index 5304925002fcc0225911ee0d28696a549776ea68..217d7bd72cea3d1cd01a3e0e5d8bcf11a1af4a7d 100644 (file)
@@ -145,19 +145,22 @@ wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxStri
     return new wxFSFile(s,
                         right,
                         info->GetMime(),
-                        GetAnchor(location),
-                        wxDateTime::Now());
+                        GetAnchor(location)
+#if wxUSE_DATETIME
+                        , wxDateTime::Now()
+#endif // wxUSE_DATETIME
+                        );
 }
 
 
 
 wxInternetFSHandler::~wxInternetFSHandler()
 {
-    wxNode *n;
+    wxHashTable::compatibility_iterator n;
     wxInetCacheNode *n2;
 
     m_Cache.BeginFind();
-    while ((n = m_Cache.Next()) != NULL)
+    while ((n = m_Cache.Next()) != 0)
     {
         n2 = (wxInetCacheNode*) n->GetData();
         wxRemoveFile(n2->GetTemp());