Include wx/time.h to get wxLocaltime_r() declaration, not wx/datetime.h.

Also remove wxUSE_DATETIME guard, wxLocaltime_r() is available even without
wxUSE_DATETIME.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-11-27 20:28:45 +00:00
parent fb7ce3e8cc
commit 2abc54ca70

View File

@@ -73,7 +73,7 @@
#include <wtime.h> #include <wtime.h>
#endif #endif
#include "wx/datetime.h" #include "wx/time.h"
// the suffix we add to the button to show that the dialog can be expanded // the suffix we add to the button to show that the dialog can be expanded
#define EXPAND_SUFFIX wxT(" >>") #define EXPAND_SUFFIX wxT(" >>")
@@ -90,7 +90,6 @@
// allows to exclude the usage of wxDateTime // allows to exclude the usage of wxDateTime
static wxString TimeStamp(const wxString& format, time_t t) static wxString TimeStamp(const wxString& format, time_t t)
{ {
#if wxUSE_DATETIME
wxChar buf[4096]; wxChar buf[4096];
struct tm tm; struct tm tm;
if ( !wxStrftime(buf, WXSIZEOF(buf), format, wxLocaltime_r(&t, &tm)) ) if ( !wxStrftime(buf, WXSIZEOF(buf), format, wxLocaltime_r(&t, &tm)) )
@@ -99,9 +98,6 @@ static wxString TimeStamp(const wxString& format, time_t t)
wxFAIL_MSG(wxT("strftime() failed")); wxFAIL_MSG(wxT("strftime() failed"));
} }
return wxString(buf); return wxString(buf);
#else // !wxUSE_DATETIME
return wxEmptyString;
#endif // wxUSE_DATETIME/!wxUSE_DATETIME
} }