Fix signatures of wxStringBuffer / wxStringBufferLength constructors in interface/wx/string.h

There were extra 'const's in the interface file.
This commit is contained in:
ARATA Mizuki 2016-02-29 18:07:07 +09:00
parent cee3188c1a
commit 89745e83f3

View File

@ -1953,7 +1953,7 @@ public:
Basically, this is equivalent to calling wxString::GetWriteBuf and
saving the result.
*/
wxStringBufferLength(const wxString& str, size_t len);
wxStringBufferLength(wxString& str, size_t len);
/**
Restores the string passed to the constructor to the usable state by calling
@ -2014,7 +2014,7 @@ public:
Basically, this is equivalent to calling wxString::GetWriteBuf() and
saving the result.
*/
wxStringBuffer(const wxString& str, size_t len);
wxStringBuffer(wxString& str, size_t len);
/**
Restores the string passed to the constructor to the usable state by calling