From: Robert Roebling Date: Sun, 27 Mar 2005 19:00:42 +0000 (+0000) Subject: Actually make use of new cool file conversion X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/37b5dea730745eae5307324c96a247f30cb5c1ab Actually make use of new cool file conversion class in wxDir. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33106 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/dir.cpp b/src/unix/dir.cpp index c75d2712a4..0aeffa42b8 100644 --- a/src/unix/dir.cpp +++ b/src/unix/dir.cpp @@ -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