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:
parent
cee3188c1a
commit
89745e83f3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user