]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datetime.cpp
add a special macro for comparing time_t values to fix unit test compilation on platf...
[wxWidgets.git] / src / common / datetime.cpp
index 297258a17b9a854f132939ee30d578fb27d71aa2..7fdd2affd108420d9b06694565c81c4bed8eb03d 100644 (file)
@@ -376,11 +376,13 @@ wxDateTime::Country wxDateTime::ms_country = wxDateTime::Country_Unknown;
 
 // debugger helper: shows what the date really is
 #ifdef __WXDEBUG__
-extern const wxChar *wxDumpDate(const wxDateTime* dt)
+extern const char *wxDumpDate(const wxDateTime* dt)
 {
-    static wxChar buf[128];
+    static char buf[128];
 
-    wxStrcpy(buf, dt->Format(_T("%Y-%m-%d (%a) %H:%M:%S")));
+    wxString fmt(dt->Format("%Y-%m-%d (%a) %H:%M:%S"));
+    wxStrncpy(buf, fmt + " (" + dt->GetValue().ToString() + " ticks)",
+              WXSIZEOF(buf));
 
     return buf;
 }