From 61e07b943c22798c60db5e29321296337f61699d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 26 Sep 2006 19:50:44 +0000 Subject: [PATCH] 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 --- wxPython/src/grid.i | 3 +++ 1 file changed, 3 insertions(+) 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; }; -- 2.50.0