From 5dcf8dd06cd94baf873942bac3e9826015a4fe86 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Oct 2006 22:33:46 +0000 Subject: [PATCH] VC compilation fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41753 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/richtext/richtextxml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/richtext/richtextxml.cpp b/src/richtext/richtextxml.cpp index e7f20cd917..cab26bf5da 100644 --- a/src/richtext/richtextxml.cpp +++ b/src/richtext/richtextxml.cpp @@ -361,7 +361,7 @@ static void OutputStringEnt(wxOutputStream& stream, const wxString& str, } last = i + 1; } - else if ((unsigned wxChar)c > 127) + else if ((unsigned long)c > 127) { OutputString(stream, str.Mid(last, i - last), convMem, convFile); -- 2.50.0