#ifdef __GNUG__
// Note: this is done in utilscmn.cpp now.
-// #pragma implementation
// #pragma implementation "utils.h"
#endif
void wxUsleep(unsigned long milliseconds)
{
- clock_t start = clock() ;
- do
- {
- YieldToAnyThread() ;
- } while( clock() - start < milliseconds / CLOCKS_PER_SEC ) ;
+ clock_t start = clock() ;
+ do
+ {
+ YieldToAnyThread() ;
+ } while( clock() - start < milliseconds / CLOCKS_PER_SEC ) ;
}
void wxSleep(int nSecs)
return (wxBusyCursorCount > 0);
}
-wxString wxMacFindFolder( short vol,
- OSType folderType,
- Boolean createFolder)
+wxString wxMacFindFolder( short vol,
+ OSType folderType,
+ Boolean createFolder)
{
short vRefNum ;
long dirID ;
FSSpec file ;
if ( FSMakeFSSpec( vRefNum , dirID , "\p" , &file ) == noErr )
{
- strDir = wxMacFSSpec2MacFilename( &file ) + ":" ;
+ strDir = wxMacFSSpec2MacFilename( &file ) + wxFILE_SEP_PATH ;
}
}
return strDir ;
// TODO
return NULL;
}
-#endif
bool wxGetDiskSpace(const wxString& path, wxLongLong *pTotal, wxLongLong *pFree)
{
return err == noErr ;
}
+#endif
// Check whether this window wants to process messages, e.g. Stop button
// in long calculations.