git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37493
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// of course, this doesn't protect us against malicious users...
wxFileName fn;
fn.AssignTempFileName(appname);
// of course, this doesn't protect us against malicious users...
wxFileName fn;
fn.AssignTempFileName(appname);
m_dir.Printf(_T("%s%c%s_dbgrpt-%lu-%s"),
fn.GetPath().c_str(), wxFILE_SEP_PATH, appname.c_str(),
wxGetProcessId(),
wxDateTime::Now().Format(_T("%Y%m%dT%H%M%S")).c_str());
m_dir.Printf(_T("%s%c%s_dbgrpt-%lu-%s"),
fn.GetPath().c_str(), wxFILE_SEP_PATH, appname.c_str(),
wxGetProcessId(),
wxDateTime::Now().Format(_T("%Y%m%dT%H%M%S")).c_str());
+#else
+ m_dir.Printf(_T("%s%c%s_dbgrpt-%lu"),
+ fn.GetPath().c_str(), wxFILE_SEP_PATH, appname.c_str(),
+ wxGetProcessId());
+#endif
// as we are going to save the process state there use restrictive
// permissions
// as we are going to save the process state there use restrictive
// permissions
{
# if wxUSE_FILESYSTEM
file = fsys.OpenFile(m_data[i].File);
{
# if wxUSE_FILESYSTEM
file = fsys.OpenFile(m_data[i].File);
modif = file && file->GetModificationTime() > m_data[i].Time;
modif = file && file->GetModificationTime() > m_data[i].Time;
+# else // wxUSE_DATETIME
+ modif = true;
+# endif // wxUSE_DATETIME
if (!file)
{
wxLogError(_("Cannot open file '%s'."), m_data[i].File.c_str());
if (!file)
{
wxLogError(_("Cannot open file '%s'."), m_data[i].File.c_str());
}
wxDELETE(file);
wxUnusedVar(file);
}
wxDELETE(file);
wxUnusedVar(file);
+# else // wxUSE_FILESYSTEM
+# if wxUSE_DATETIME
modif = wxDateTime(wxFileModificationTime(m_data[i].File)) > m_data[i].Time;
modif = wxDateTime(wxFileModificationTime(m_data[i].File)) > m_data[i].Time;
+# else // wxUSE_DATETIME
+ modif = true;
+# endif // wxUSE_DATETIME
+# endif // wxUSE_FILESYSTEM
}
ProcessPlatformProperty(m_data[i].Doc->GetRoot());
}
ProcessPlatformProperty(m_data[i].Doc->GetRoot());
#if wxUSE_FILESYSTEM
m_data[i].Time = file->GetModificationTime();
#if wxUSE_FILESYSTEM
m_data[i].Time = file->GetModificationTime();
+#else // wxUSE_FILESYSTEM
m_data[i].Time = wxDateTime(wxFileModificationTime(m_data[i].File));
m_data[i].Time = wxDateTime(wxFileModificationTime(m_data[i].File));
+#endif // wxUSE_FILESYSTEM
+#endif // wxUSE_DATETIME
// the macro below to do it
//#define CHANGE_SYSTEM_DATE
// the macro below to do it
//#define CHANGE_SYSTEM_DATE
#ifndef __WINDOWS__
#undef CHANGE_SYSTEM_DATE
#endif
#ifndef __WINDOWS__
#undef CHANGE_SYSTEM_DATE
#endif
#endif // CHANGE_SYSTEM_DATE
}
#endif // CHANGE_SYSTEM_DATE
}
+#endif // wxUSE_DATETIME