private:
// reference-counted data
- struct Data : wxPrivate::UntypedBufferData
+ struct Data : public wxPrivate::UntypedBufferData
{
Data(CharType *str, Kind kind = Owned)
- : UntypedBufferData(str, kind)
+ : wxPrivate::UntypedBufferData(str, kind)
{
}
// the reference count
size_t m_ref;
- DECLARE_NO_COPY_CLASS(wxMemoryBufferData)
+ wxDECLARE_NO_COPY_CLASS(wxMemoryBufferData);
};