]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/dir.cpp
Fixed compilation error on unknown type "in_addr_t".
[wxWidgets.git] / src / unix / dir.cpp
index 2e283dfc4db5bb51ce6575447f65eeae7febbbd7..0aeffa42b8576bc44e5e4c00404eb33e5a97b135 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     08.12.99
 // RCS-ID:      $Id$
 // Copyright:   (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "dir.h"
 #endif
 
@@ -136,7 +136,7 @@ bool wxDirData::Read(wxString *filename)
             return FALSE;
             
 #if wxUSE_UNICODE
-        de_d_name = wxConvLibc.cMB2WC( de->d_name );
+        de_d_name = wxConvFileName->cMB2WC( de->d_name );
 #else
         de_d_name = de->d_name;
 #endif