From: Robin Dunn Date: Tue, 26 Sep 2006 19:50:44 +0000 (+0000) Subject: Add missing "public" so wxGridCellRenderer methods will have wrappers X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/61e07b943c22798c60db5e29321296337f61699d 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 --- diff --git a/wxPython/src/grid.i b/wxPython/src/grid.i index 0c7718da11..00fee52e13 100644 --- a/wxPython/src/grid.i +++ b/wxPython/src/grid.i @@ -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; };