From 4300d6cbc387f46ba91ddbb6e492bd83bc2257ae Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Mon, 12 Apr 1999 22:41:40 +0000 Subject: [PATCH] Small glitch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/string.h b/include/wx/string.h index 4b42a151b1..8a060da5d4 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -209,8 +209,8 @@ class WXDLLEXPORT wxCSConv : wxMBConv wxChar *data; public: wxCSConv(const wxChar *charset); - virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n); - virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n); + virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const; + virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; }; // filenames are multibyte on Unix and probably widechar on Windows? -- 2.47.2