]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed some compiler warnings in wxaui
authorBenjamin Williams <bwilliams@kirix.com>
Sat, 28 Oct 2006 18:27:42 +0000 (18:27 +0000)
committerBenjamin Williams <bwilliams@kirix.com>
Sat, 28 Oct 2006 18:27:42 +0000 (18:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/aui/auibook.h
src/aui/auibook.cpp

index f10d6801a56c9a3e6cecf198fe583069081ee9e1..57a605bbf9a14ad2eaddaeb69568cf26db0b7a84 100644 (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,
index 07cf4c02169b600f4d36f1080838008f56f1d346..5d7b97897fed5e046fc9e71f656161eb4453e455 100644 (file)
@@ -125,6 +125,10 @@ wxDefaultTabArt::wxDefaultTabArt()
     m_selected_bkpen = wxPen(selectedtab_colour);
 }
 
+wxDefaultTabArt::~wxDefaultTabArt()
+{
+}
+
 void wxDefaultTabArt::DrawBackground(
              wxDC* dc,
              const wxRect& rect)