]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/strconv.h
Fixed problem in InsertItems of always adding ownerdraw data even when
[wxWidgets.git] / include / wx / strconv.h
index 92d57293706640b871e64f41ef62074a63755166..a329062f5cf37bcb6515cfe1496f93676c34f6a2 100644 (file)
@@ -23,6 +23,7 @@
 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
 #  undef __BSEXCPT__
 #endif
+
 #include <stdlib.h>
 
 #if wxUSE_WCHAR_T
@@ -130,9 +131,13 @@ public:
     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;
 
+    void Clear() ;
+
 private:
     void SetName(const wxChar *charset);
 
+    // note that we can't use wxString here because of compilation
+    // dependencies: we're included from wx/string.h
     wxChar *m_name;
     wxCharacterSet *m_cset;
     bool m_deferred;