Add missing "public" so wxGridCellRenderer methods will have wrappers

generated for them.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-09-26 19:50:44 +00:00
parent 64c47f48c3
commit 61e07b943c

View File

@ -523,16 +523,19 @@ public:
class wxGridCellRenderer : public wxGridCellWorker
{
public:
virtual void Draw(wxGrid& grid,
wxGridCellAttr& attr,
wxDC& dc,
const wxRect& rect,
int row, int col,
bool isSelected);
virtual wxSize GetBestSize(wxGrid& grid,
wxGridCellAttr& attr,
wxDC& dc,
int row, int col);
virtual wxGridCellRenderer *Clone() const;
};