wxString result;
gs_dir->GetFirst(&result, wxFileNameFromPath(spec), dirFlags);
if ( result.IsEmpty() )
+ {
wxDELETE(gs_dir);
+ return result;
+ }
return gs_dirPath + result;
}
gs_dir->GetNext(&result);
if ( result.IsEmpty() )
+ {
wxDELETE(gs_dir);
+ return result;
+ }
return gs_dirPath + result;
}