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:
@@ -1953,7 +1953,7 @@ public:
|
|||||||
Basically, this is equivalent to calling wxString::GetWriteBuf and
|
Basically, this is equivalent to calling wxString::GetWriteBuf and
|
||||||
saving the result.
|
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
|
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
|
Basically, this is equivalent to calling wxString::GetWriteBuf() and
|
||||||
saving the result.
|
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
|
Restores the string passed to the constructor to the usable state by calling
|
||||||
|
Reference in New Issue
Block a user