Remove useless wxAuiMSWTabArt::SetSizingInfo() override

No need to have a function which just calls the base class version.
This commit is contained in:
Vadim Zeitlin
2021-11-13 23:05:40 +00:00
parent 9d1972fd11
commit 0b51dfe134
2 changed files with 0 additions and 9 deletions

View File

@@ -19,8 +19,6 @@ public:
virtual ~wxAuiMSWTabArt();
wxAuiTabArt* Clone() wxOVERRIDE;
void SetSizingInfo(const wxSize& tabCtrlSize,
size_t tabCount) wxOVERRIDE;
void DrawBorder(
wxDC& dc,

View File

@@ -39,13 +39,6 @@ wxAuiTabArt* wxAuiMSWTabArt::Clone()
return new wxAuiMSWTabArt(*this);
}
void wxAuiMSWTabArt::SetSizingInfo(const wxSize& tab_ctrl_size,
size_t tab_count)
{
wxAuiGenericTabArt::SetSizingInfo(tab_ctrl_size, tab_count);
}
void wxAuiMSWTabArt::DrawBorder(wxDC& dc, wxWindow* wnd, const wxRect& rect)
{
if ( !IsThemed() )