split wxCharTypeBuffer<T> into wxScopedCharTypeBuffer<T> and wxCharTypeBuffer<T> -- the former is for transient data with validity limited to parent's lifetime, the latter is for permanent storage of string data (bug #9638)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -210,8 +210,8 @@ public:
|
||||
wxVariant(const char* val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wchar_t* val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxCStrData& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxCharBuffer& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxWCharBuffer& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxScopedCharBuffer& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxScopedWCharBuffer& val, const wxString& name = wxEmptyString);
|
||||
|
||||
bool operator== (const wxString& value) const;
|
||||
bool operator!= (const wxString& value) const;
|
||||
@@ -225,7 +225,7 @@ public:
|
||||
wxVariant& operator=(const wxCStrData& value)
|
||||
{ return *this = value.AsString(); }
|
||||
template<typename T>
|
||||
wxVariant& operator=(const wxCharTypeBuffer<T>& value)
|
||||
wxVariant& operator=(const wxScopedCharTypeBuffer<T>& value)
|
||||
{ return *this = value.data(); }
|
||||
|
||||
inline operator wxString () const { return MakeString(); }
|
||||
|
Reference in New Issue
Block a user