From: Ove Kaaven Date: Thu, 15 Apr 1999 18:07:30 +0000 (+0000) Subject: Slightly better style? X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a86f1d4a7d613a94c1136a1a79bca12f4600f56d?ds=inline Slightly better style? git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/string.h b/include/wx/string.h index 6ba40254f7..0413c5be5b 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -220,10 +220,13 @@ class wxCharacterSet; class WXDLLEXPORT wxCSConv : public wxMBConv { private: - wxCharacterSet *cset; + wxChar *m_name; + wxCharacterSet *m_cset; + bool m_deferred; public: wxCSConv(const wxChar *charset); - virtual ~wxCSConv(void); + virtual ~wxCSConv(); + void LoadNow(); 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; };