]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stc/private.h
Test using wxString::ToCDouble() in wxAny.
[wxWidgets.git] / include / wx / stc / private.h
index 6a57cb9adb3a2e8a53dbe43d48b3f16090b577fe..34143aca3c5013685f993fddc0eca7aa6ba2f4c8 100644 (file)
@@ -21,7 +21,7 @@
 
 extern wxString stc2wx(const char* str);
 extern wxString stc2wx(const char* str, size_t len);
 
 extern wxString stc2wx(const char* str);
 extern wxString stc2wx(const char* str, size_t len);
-extern const wxWX2MBbuf wx2stc(const wxString& str);
+extern wxCharBuffer wx2stc(const wxString& str);
 
 // This function takes both wxString and wxCharBuffer because it uses either
 // one or the other of them depending on the build mode. In Unicode it uses the
 
 // This function takes both wxString and wxCharBuffer because it uses either
 // one or the other of them depending on the build mode. In Unicode it uses the
@@ -40,7 +40,7 @@ inline wxString stc2wx(const char* str) {
 inline wxString stc2wx(const char* str, size_t len) {
     return wxString(str, len);
 }
 inline wxString stc2wx(const char* str, size_t len) {
     return wxString(str, len);
 }
-inline const wxWX2MBbuf wx2stc(const wxString& str) {
+inline const char* wx2stc(const wxString& str) {
     return str.mbc_str();
 }
 
     return str.mbc_str();
 }