wxStructStat fbuf;
// get permissions of file1
- if ( wxStat( file1.c_str(), &fbuf) != 0 )
+ if ( wxStat( file1, &fbuf) != 0 )
{
// the file probably doesn't exist or we haven't the rights to read
// from it anyhow
GetWindowsDirectory(buf, 256);
return wxString(buf);
#elif defined(__WXMAC__) && wxOSX_USE_CARBON
- return wxMacFindFolder(kOnSystemDisk, 'macs', false);
+ return wxMacFindFolderNoSeparator(kOnSystemDisk, 'macs', false);
#else
return wxEmptyString;
#endif