]> git.saurik.com Git - wxWidgets.git/commitdiff
Small glitch.
authorOve Kaaven <ovek@arcticnet.no>
Mon, 12 Apr 1999 22:41:40 +0000 (22:41 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 12 Apr 1999 22:41:40 +0000 (22:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 4b42a151b1d883a8ba186120bc4a66769de9da84..8a060da5d4757ed88780b54e5eb86a982ecf7903 100644 (file)
@@ -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?