From: Václav Slavík Date: Sun, 31 Oct 2004 08:36:06 +0000 (+0000) Subject: compilation fixes for gcc-3.4 + Unicode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/db6b57fff53b8da014a8be04970be41b42452704 compilation fixes for gcc-3.4 + Unicode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/tex2rtf/src/tex2any.cpp b/utils/tex2rtf/src/tex2any.cpp index 8400d87a13..fe3f1b7557 100644 --- a/utils/tex2rtf/src/tex2any.cpp +++ b/utils/tex2rtf/src/tex2any.cpp @@ -2713,7 +2713,8 @@ void DefaultOnMacro(int macroId, int no_args, bool start) break; case ltPOUNDS: if (start) - TexOutput(_T("£"), true); + // FIXME: this is valid only if the output is iso-8859-1 + TexOutput(wxString::FromAscii("£"), true); break; case ltSPECIALDOUBLEDOLLAR: // Interpret as center OnMacro(ltCENTER, no_args, start);