projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Moved allocation of m_imData or key down gives seg fault
[wxWidgets.git]
/
src
/
common
/
filefn.cpp
diff --git
a/src/common/filefn.cpp
b/src/common/filefn.cpp
index 37df0c74dbd9da9bfa670c4d20fb1697f929bd84..18620e0a5cbcb8c89561663b51141b0afd55d498 100644
(file)
--- a/
src/common/filefn.cpp
+++ b/
src/common/filefn.cpp
@@
-183,14
+183,14
@@
void wxPathList::AddEnvList (const wxString& envVariable)
path such as "C:\Program Files" would be split into 2 paths:
"C:\Program" and "Files"
*/
path such as "C:\Program Files" would be split into 2 paths:
"C:\Program" and "Files"
*/
-// wxT(" ;"); // Don't sep
e
rate with colon in DOS (used for drive)
- wxT(";"); // Don't sep
e
rate with colon in DOS (used for drive)
+// wxT(" ;"); // Don't sep
a
rate with colon in DOS (used for drive)
+ wxT(";"); // Don't sep
a
rate with colon in DOS (used for drive)
#else
wxT(" :;");
#endif
#else
wxT(" :;");
#endif
- wx
Char *val = wxGetenv (WXSTRINGCAST envVariable);
- if (
val && *val
)
+ wx
String val ;
+ if (
wxGetEnv (WXSTRINGCAST envVariable, &val)
)
{
wxChar *s = MYcopystring (val);
wxChar *save_ptr, *token = wxStrtok (s, PATH_TOKS, &save_ptr);
{
wxChar *s = MYcopystring (val);
wxChar *save_ptr, *token = wxStrtok (s, PATH_TOKS, &save_ptr);
@@
-1011,12
+1011,12
@@
wxCopyFile (const wxString& file1, const wxString& file2, bool overwrite)
return false;
}
#elif defined(__OS2__)
return false;
}
#elif defined(__OS2__)
- if ( ::DosCopy(
file2, file2
, overwrite ? DCPY_EXISTING : 0) != 0 )
+ if ( ::DosCopy(
(PSZ)file1.c_str(), (PSZ)file2.c_str()
, overwrite ? DCPY_EXISTING : 0) != 0 )
return false;
#elif defined(__PALMOS__)
// TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
return false;
return false;
#elif defined(__PALMOS__)
// TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
return false;
-#el
se
// !Win32
+#el
if wxUSE_FILE
// !Win32
wxStructStat fbuf;
// get permissions of file1
wxStructStat fbuf;
// get permissions of file1
@@
-1087,6
+1087,15
@@
wxCopyFile (const wxString& file1, const wxString& file2, bool overwrite)
return false;
}
#endif // OS/2 || Mac
return false;
}
#endif // OS/2 || Mac
+
+#else // !Win32 && ! wxUSE_FILE
+
+ // impossible to simulate with wxWidgets API
+ wxUnusedVar(file1);
+ wxUnusedVar(file2);
+ wxUnusedVar(overwrite);
+ return false;
+
#endif // __WXMSW__ && __WIN32__
return true;
#endif // __WXMSW__ && __WIN32__
return true;
@@
-1227,7
+1236,7
@@
bool wxDirExists(const wxChar *pszPathName)
return (ret != (DWORD)-1) && (ret & FILE_ATTRIBUTE_DIRECTORY);
#elif defined(__OS2__)
return (ret != (DWORD)-1) && (ret & FILE_ATTRIBUTE_DIRECTORY);
#elif defined(__OS2__)
- return (::DosSetCurrentDir(
WXSTRINGCAST strPath
));
+ return (::DosSetCurrentDir(
(PSZ)(WXSTRINGCAST strPath)
));
#else // !__WIN32__
wxStructStat st;
#else // !__WIN32__
wxStructStat st;
@@
-1256,6
+1265,8
@@
wxChar *wxGetTempFileName(const wxString& prefix, wxChar *buf)
return buf;
#else
return buf;
#else
+ wxUnusedVar(prefix);
+ wxUnusedVar(buf);
// wxFileName::CreateTempFileName needs wxFile class enabled
return NULL;
#endif
// wxFileName::CreateTempFileName needs wxFile class enabled
return NULL;
#endif