diff -r 7ba1c04d96d5 -r 4ffc47ae27e4 file.cpp --- a/file.cpp Fri Nov 09 12:07:20 2007 +0000 +++ b/file.cpp Fri Nov 09 12:07:21 2007 +0000 @@ -8,9 +8,8 @@ #include "file.h" #include "process.h" -// Avoid full inclusion of io.h by just defining mktemp's prototype here. #if defined(Q_OS_WIN32) -extern "C" char *_mktemp(char *fmt); +#include "mkdtemp.h" #include #endif @@ -150,12 +149,7 @@ p[i]=s.at(i).latin1(); p[bytes]=0; -#if defined(Q_OS_WIN32) - // There's no mkdtemp on VCEE. - QString r=_mktemp(p); -#else QString r=mkdtemp (p); -#endif if (r.isEmpty()) ok=false; free (p); return r;