]> git.saurik.com Git - wxWidgets.git/blobdiff - src/aui/auibook.cpp
added some overrides to wxTabFrame to remove errors
[wxWidgets.git] / 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;