]> git.saurik.com Git - wxWidgets.git/commitdiff
added some overrides to wxTabFrame to remove errors
authorBenjamin Williams <bwilliams@kirix.com>
Sat, 22 Jul 2006 07:34:45 +0000 (07:34 +0000)
committerBenjamin Williams <bwilliams@kirix.com>
Sat, 22 Jul 2006 07:34:45 +0000 (07:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/auibook.cpp

index f8dac83294849ec3dc8f44d1d73ceaf6a70050d2..d00128380484ded2cf1eb29a137988c5133001cf 100644 (file)
@@ -826,6 +826,19 @@ public:
         }
     }
 
         }
     }
 
+    void DoGetSize(int* x, int* y) const
+    {
+        if (x)
+            *x = m_rect.GetWidth();
+        if (y)
+            *y = m_rect.GetHeight();
+    }
+    
+    void Update()
+    {
+        // does nothing
+    }
+    
 public:
 
     wxRect m_rect;
 public:
 
     wxRect m_rect;