]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/toplvcmn.cpp
wxStdButtonSizer Finalise --> Realize
[wxWidgets.git] / src / common / toplvcmn.cpp
index e23349fb52d94f83718aa5ed821e5d81ba8e410c..0146f40ab4553fe2d3f93eb6b4cff17f4bda493d 100644 (file)
@@ -109,6 +109,12 @@ bool wxTopLevelWindowBase::IsLastBeforeExit() const
 // wxTopLevelWindow geometry
 // ----------------------------------------------------------------------------
 
+void wxTopLevelWindowBase::GetRectForTopLevelChildren(int *x, int *y, int *w, int *h)
+{
+    GetPosition(x,y);
+    GetSize(w,h);
+}
+
 wxSize wxTopLevelWindowBase::GetMaxSize() const
 {
     wxSize  size( GetMaxWidth(), GetMaxHeight() );