From 37b5dea730745eae5307324c96a247f30cb5c1ab Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sun, 27 Mar 2005 19:00:42 +0000 Subject: [PATCH] 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 --- src/unix/dir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2