Just use wxFileName::GetTempDir() instead of creating a file in the temporary
directory and then using its path.
Closes #15103.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73672
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// directory, so do our best to create a unique name ourselves
//
// of course, this doesn't protect us against malicious users...
// directory, so do our best to create a unique name ourselves
//
// of course, this doesn't protect us against malicious users...
- wxFileName fn;
- fn.AssignTempFileName(appname);
#if wxUSE_DATETIME
m_dir.Printf(wxT("%s%c%s_dbgrpt-%lu-%s"),
#if wxUSE_DATETIME
m_dir.Printf(wxT("%s%c%s_dbgrpt-%lu-%s"),
- fn.GetPath().c_str(), wxFILE_SEP_PATH, appname.c_str(),
+ wxFileName::GetTempDir(), wxFILE_SEP_PATH, appname,
- wxDateTime::Now().Format(wxT("%Y%m%dT%H%M%S")).c_str());
+ wxDateTime::Now().Format(wxT("%Y%m%dT%H%M%S")));
#else
m_dir.Printf(wxT("%s%c%s_dbgrpt-%lu"),
#else
m_dir.Printf(wxT("%s%c%s_dbgrpt-%lu"),
- fn.GetPath().c_str(), wxFILE_SEP_PATH, appname.c_str(),
+ wxFileName::GetTempDir(), wxFILE_SEP_PATH, appname,
wxGetProcessId());
#endif
wxGetProcessId());
#endif