// Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
// in dtor (if ref.count reaches 0).
static
- const wxScopedCharTypeBuffer CreateOwned(const CharType *str,
+ const wxScopedCharTypeBuffer CreateOwned(CharType *str,
size_t len = wxNO_LEN )
{
if ( len == wxNO_LEN )
wxScopedCharTypeBuffer buf;
if ( str )
- buf.m_data = new Data(StrCopy(str, len), len);
+ buf.m_data = new Data(str, len);
return buf;
}
{
if ( len == wxNO_LEN )
len = wxStrlen(str);
- this->m_data = new Data(StrCopy(str, len), len);
+ this->m_data = new Data(this->StrCopy(str, len), len);
}
else
{
wxCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
{
- MakeOwnedCopyOf(src);
+ this->MakeOwnedCopyOf(src);
}
wxCharTypeBuffer& operator=(const wxScopedCharTypeBuffer<T>& src)