]> git.saurik.com Git - wxWidgets.git/commitdiff
wxFileModificationTime() needs wxDateTime, put it inside wxUSE_DATETIME
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 31 Jul 2006 12:03:22 +0000 (12:03 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 31 Jul 2006 12:03:22 +0000 (12:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filefn.h
src/common/filefn.cpp

index 0f3d25f3889de49c07b4450c920c9d39dc93b87e..5839b81095086494c71f1d55d1f859449589062a 100644 (file)
@@ -545,9 +545,13 @@ WXDLLIMPEXP_BASE bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, co
 // On non-Windows platform, probably just return the empty string.
 WXDLLIMPEXP_BASE wxString wxGetOSDirectory();
 
+#if wxUSE_DATETIME
+
 // Get file modification time
 WXDLLIMPEXP_BASE time_t wxFileModificationTime(const wxString& filename);
 
+#endif // wxUSE_DATETIME
+
 // Parses the wildCard, returning the number of filters.
 // Returns 0 if none or if there's a problem,
 // The arrays will contain an equal number of items found before the error.
index 451ec6d421226055fc80dbdb9c258aab6c0829b5..3707d0a32713681741d26356e45f77263b1413dc 100644 (file)
@@ -1625,6 +1625,8 @@ void WXDLLEXPORT wxSplitPath(const wxChar *pszFileName,
     wxFileName::SplitPath(pszFileName, pstrPath, pstrName, pstrExt);
 }
 
+#if wxUSE_DATETIME
+
 time_t WXDLLEXPORT wxFileModificationTime(const wxString& filename)
 {
     wxDateTime mtime;
@@ -1634,6 +1636,8 @@ time_t WXDLLEXPORT wxFileModificationTime(const wxString& filename)
     return mtime.GetTicks();
 }
 
+#endif // wxUSE_DATETIME
+
 
 // Parses the filterStr, returning the number of filters.
 // Returns 0 if none or if there's a problem.