From 665e6a875343506ffe2b72e7a6cc26348ebffb99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 30 Mar 2007 20:30:34 +0000 Subject: [PATCH] added missing public keyword to wxWritableCharTypeBuffer declaration git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/buffer.h b/include/wx/buffer.h index a0c2786ef4..7daf8a8e71 100644 --- a/include/wx/buffer.h +++ b/include/wx/buffer.h @@ -148,7 +148,7 @@ public: // wxCharTypeBuffer implicitly convertible to T* template -class wxWritableCharTypeBuffer : wxCharTypeBuffer +class wxWritableCharTypeBuffer : public wxCharTypeBuffer { public: typedef typename wxCharTypeBuffer::CharType CharType;