automated ifacecheck fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-27 21:26:54 +00:00
parent 50ec54b656
commit fadc2df682
33 changed files with 145 additions and 151 deletions

View File

@@ -486,8 +486,8 @@ public:
/**
Creates the actual edit control.
*/
void Create(wxWindow* parent, wxWindowID id,
wxEvtHandler* evtHandler);
virtual void Create(wxWindow* parent, wxWindowID id,
wxEvtHandler* evtHandler) = 0;
/**
Final cleanup.
@@ -515,8 +515,7 @@ public:
Draws the part of the cell not occupied by the control: the base class
version just fills it with background colour from the attribute.
*/
void PaintBackground(const wxRect& rectCell,
wxGridCellAttr* attr);
virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr* attr);
/**
Reset the value in the control back to its starting value.
@@ -817,8 +816,8 @@ public:
/**
Get the preferred size of the cell for its contents.
*/
wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc,
int row, int col);
virtual wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc,
int row, int col) = 0;
};