always return (owned or non-owned, depending on build) wxScopedCharBuffer from utf8_str() and ToUTF8()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1710,8 +1710,10 @@ public:
|
||||
return FromImpl(wxStringImpl(utf8, len));
|
||||
}
|
||||
|
||||
const char* utf8_str() const { return wx_str(); }
|
||||
const char* ToUTF8() const { return wx_str(); }
|
||||
const wxScopedCharBuffer utf8_str() const
|
||||
{ return wxCharBuffer::CreateNonOwned(wx_str()); }
|
||||
const wxScopedCharBuffer ToUTF8() const
|
||||
{ return wxCharBuffer::CreateNonOwned(wx_str()); }
|
||||
|
||||
// this function exists in UTF-8 build only and returns the length of the
|
||||
// internal UTF-8 representation
|
||||
|
Reference in New Issue
Block a user