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:
@@ -523,16 +523,19 @@ public:
|
|||||||
|
|
||||||
class wxGridCellRenderer : public wxGridCellWorker
|
class wxGridCellRenderer : public wxGridCellWorker
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
virtual void Draw(wxGrid& grid,
|
virtual void Draw(wxGrid& grid,
|
||||||
wxGridCellAttr& attr,
|
wxGridCellAttr& attr,
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
const wxRect& rect,
|
const wxRect& rect,
|
||||||
int row, int col,
|
int row, int col,
|
||||||
bool isSelected);
|
bool isSelected);
|
||||||
|
|
||||||
virtual wxSize GetBestSize(wxGrid& grid,
|
virtual wxSize GetBestSize(wxGrid& grid,
|
||||||
wxGridCellAttr& attr,
|
wxGridCellAttr& attr,
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
int row, int col);
|
int row, int col);
|
||||||
|
|
||||||
virtual wxGridCellRenderer *Clone() const;
|
virtual wxGridCellRenderer *Clone() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user