]> git.saurik.com Git - wxWidgets.git/commitdiff
Add missing "public" so wxGridCellRenderer methods will have wrappers
authorRobin Dunn <robin@alldunn.com>
Tue, 26 Sep 2006 19:50:44 +0000 (19:50 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 26 Sep 2006 19:50:44 +0000 (19:50 +0000)
generated for them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/grid.i

index 0c7718da11945f8c9793e5da2a56ec277fd61634..00fee52e13323b262c4aeb38543f4427df7f051d 100644 (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;
 };