// ----------------------------------------------------------------------------
/* this is done in platform-specific files
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "dir.h"
#endif
*/
wxString dirname;
for ( bool cont = GetFirst(&dirname, _T(""), wxDIR_DIRS | wxDIR_HIDDEN);
cont;
- cont = GetNext(&dirname) )
+ cont = cont && GetNext(&dirname) )
{
const wxString fulldirname = prefix + dirname;