From: Ove Kaaven Date: Mon, 12 Apr 1999 22:41:40 +0000 (+0000) Subject: Small glitch. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4300d6cbc387f46ba91ddbb6e492bd83bc2257ae?ds=inline Small glitch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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?