From 803c55373484d1e2bfed85b46cbbfff8bfad1276 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 31 May 2001 21:41:44 +0000 Subject: [PATCH] Unix compilation fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/intl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 42e01b6274..aea952ed77 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1006,8 +1006,8 @@ wxFontEncoding wxLocale::GetSystemEncoding() wxString encname = GetSystemEncodingName(); if ( !encname.empty() ) { - return wxFontMapper::CharsetToEncoding(encname, - FALSE /* not interactive */); + return wxTheFontMapper-> + CharsetToEncoding(encname, FALSE /* not interactive */); } #endif // Win32/Unix -- 2.45.2