fixed some compiler warnings in wxaui

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Benjamin Williams
2006-10-28 18:27:42 +00:00
parent b6418695ca
commit 488e50ee50
2 changed files with 8 additions and 0 deletions

View File

@@ -34,6 +34,9 @@ class wxTabArt
{
public:
wxTabArt() { }
virtual ~wxTabArt() { }
virtual void DrawBackground(
wxDC* dc,
const wxRect& rect) = 0;
@@ -57,6 +60,7 @@ class wxDefaultTabArt : public wxTabArt
public:
wxDefaultTabArt();
virtual ~wxDefaultTabArt();
void DrawBackground(
wxDC* dc,

View File

@@ -125,6 +125,10 @@ wxDefaultTabArt::wxDefaultTabArt()
m_selected_bkpen = wxPen(selectedtab_colour);
}
wxDefaultTabArt::~wxDefaultTabArt()
{
}
void wxDefaultTabArt::DrawBackground(
wxDC* dc,
const wxRect& rect)