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:
@@ -34,6 +34,9 @@ class wxTabArt
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
wxTabArt() { }
|
||||||
|
virtual ~wxTabArt() { }
|
||||||
|
|
||||||
virtual void DrawBackground(
|
virtual void DrawBackground(
|
||||||
wxDC* dc,
|
wxDC* dc,
|
||||||
const wxRect& rect) = 0;
|
const wxRect& rect) = 0;
|
||||||
@@ -57,6 +60,7 @@ class wxDefaultTabArt : public wxTabArt
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
wxDefaultTabArt();
|
wxDefaultTabArt();
|
||||||
|
virtual ~wxDefaultTabArt();
|
||||||
|
|
||||||
void DrawBackground(
|
void DrawBackground(
|
||||||
wxDC* dc,
|
wxDC* dc,
|
||||||
|
@@ -125,6 +125,10 @@ wxDefaultTabArt::wxDefaultTabArt()
|
|||||||
m_selected_bkpen = wxPen(selectedtab_colour);
|
m_selected_bkpen = wxPen(selectedtab_colour);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxDefaultTabArt::~wxDefaultTabArt()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
void wxDefaultTabArt::DrawBackground(
|
void wxDefaultTabArt::DrawBackground(
|
||||||
wxDC* dc,
|
wxDC* dc,
|
||||||
const wxRect& rect)
|
const wxRect& rect)
|
||||||
|
Reference in New Issue
Block a user