]> git.saurik.com Git - wxWidgets.git/commitdiff
added comment clarifying the meaning of DoMoveWindow's x and y arguments
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 23 Sep 2006 17:25:46 +0000 (17:25 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 23 Sep 2006 17:25:46 +0000 (17:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/window.h

index 9716f0e9f15ae812ab65fc26e616df9c5f1b05a0..5ab0142320e3f26f459f88b7c3df41635757ec51 100644 (file)
@@ -1342,6 +1342,10 @@ protected:
     // from both DoSetSize() and DoSetClientSize() and would usually just
     // reposition this window except for composite controls which will want to
     // arrange themselves inside the given rectangle
+    //
+    // Important note: the coordinates passed to this method are in parent's
+    // *window* coordinates and not parent's client coordinates (as the values
+    // passed to DoSetSize and returned by DoGetPosition are)!
     virtual void DoMoveWindow(int x, int y, int width, int height) = 0;
 
     // centre the window in the specified direction on parent, note that