From 14c90e0074aa2a5eb7a009d356a8181475ee7233 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 10 Jun 2001 23:15:02 +0000 Subject: [PATCH] another compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index dd2c71cab1..c0c44bb58a 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -97,7 +97,7 @@ WXDLLEXPORT_DATA(wxMBConv *) wxConvCurrent = &wxConvLibc; #ifdef WC_UTF16 -static size_t encode_utf16(wxUint32 input,wxUint16*output) +static size_t encode_utf16(wxUint32 input, wxUint16 *output) { if (input<=0xffff) { @@ -119,7 +119,7 @@ static size_t encode_utf16(wxUint32 input,wxUint16*output) } } -static size_t decode_utf16(wxUint16*input,wxUint32&output) +static size_t decode_utf16(const wxUint16* input, wxUint32& output) { if ((*input<0xd800) || (*input>0xdfff)) { -- 2.47.2