added missing public keyword to wxWritableCharTypeBuffer declaration

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2007-03-30 20:30:34 +00:00
parent a50cf60efe
commit 665e6a8753

View File

@ -148,7 +148,7 @@ public:
// wxCharTypeBuffer<T> implicitly convertible to T*
template <typename T>
class wxWritableCharTypeBuffer : wxCharTypeBuffer<T>
class wxWritableCharTypeBuffer : public wxCharTypeBuffer<T>
{
public:
typedef typename wxCharTypeBuffer<T>::CharType CharType;