From e0ebbbd9e9ed7b3d6a1faeab9a06fe643c9d8369 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Fri, 4 Jul 2003 19:54:31 +0000 Subject: [PATCH] pid removed from temp file name git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 77d2f2fcab..e53a24eafe 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -694,7 +694,7 @@ wxFileName::CreateTempFileName(const wxString& prefix, wxFile *fileTemp) } #else // !HAVE_MKTEMP (includes __DOS__) // generate the unique file name ourselves - #ifndef __DOS__ + #if !defined(__DOS__) && (!defined(__MWERKS__) || defined(__DARWIN__) ) path << (unsigned int)getpid(); #endif -- 2.45.2