added missing public keyword to wxWritableCharTypeBuffer declaration
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 30 Mar 2007 20:30:34 +0000 (20:30 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 30 Mar 2007 20:30:34 +0000 (20:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/buffer.h

index a0c2786ef43e086b49f5ffba958005218bcee72a..7daf8a8e7143ff2e9a23a1718f871ec01d08b3a0 100644 (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;