]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/frame.cpp
source compatible way to solve the background problem
[wxWidgets.git] / src / palmos / frame.cpp
index c81817af9299809c46f35c59c77839eb2eeef0b3..6015a059d34d8bd08ef16875c7139588f243fcb8 100644 (file)
@@ -183,6 +183,10 @@ void wxFrame::DoSetClientSize(int width, int height)
 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
 void wxFrame::DoGetClientSize(int *x, int *y) const
 {
+    wxSize size = GetSize();
+    wxPoint pos = GetClientAreaOrigin();
+    *x = size.x - pos.x - 1;
+    *y = size.y - pos.y - 1;
 }
 
 // ----------------------------------------------------------------------------