From: Stefan Neis Date: Wed, 27 Aug 2003 18:19:20 +0000 (+0000) Subject: Want to use wxDir::HasSubDirs on OS/2 with gcc, too. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/15732d07e79b9843e11a9ece143431e0d2b3d27c?ds=inline Want to use wxDir::HasSubDirs on OS/2 with gcc, too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dircmn.cpp b/src/common/dircmn.cpp index e613a8b038..1fd7429bff 100644 --- a/src/common/dircmn.cpp +++ b/src/common/dircmn.cpp @@ -66,7 +66,7 @@ bool wxDir::HasFiles(const wxString& spec) } // we have a (much) faster version for Unix -#if (defined(__CYGWIN__) && defined(__WINDOWS__)) || !defined(__UNIX_LIKE__) || defined(__WXMAC__) +#if (defined(__CYGWIN__) && defined(__WINDOWS__)) || !defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__EMX__) bool wxDir::HasSubDirs(const wxString& spec) {