]> git.saurik.com Git - wxWidgets.git/commitdiff
SendSizeEvent() method moved from wxWindow to wxFrame, as that is the only place...
authorGeorge Tasker <gtasker@allenbrook.com>
Sat, 31 Mar 2001 18:43:54 +0000 (18:43 +0000)
committerGeorge Tasker <gtasker@allenbrook.com>
Sat, 31 Mar 2001 18:43:54 +0000 (18:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/frame.h
include/wx/msw/window.h

index 325f0acc510b96a4772cc5df38a7d6a830a022b4..d9c67c2bd2565e9ea308d2b54f456aaebe586e55 100644 (file)
@@ -112,6 +112,10 @@ public:
     void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
 #endif // tooltips
 
+    // a MSW only function which sends a size event to the window using its
+    // current size - this has an effect of refreshing the window layout
+    void SendSizeEvent();
+
 protected:
     // common part of all ctors
     void Init();
index bb3c5a2cd94c66266d5580d908f45d279b93970a..f09bd3419f4270b3b1bfb4504379eadfe67bcdd4 100644 (file)
@@ -163,7 +163,10 @@ public:
 
     // a MSW only function which sends a size event to the window using its
     // current size - this has an effect of refreshing the window layout
+/*
+FUNCTION IS NOW A MEMBER OF wxFrame - gt
     void SendSizeEvent();
+*/
 
     // implementation from now on
     // --------------------------
@@ -259,7 +262,7 @@ public:
                           WXWORD *item, WXWORD *flags, WXHMENU *hmenu);
 
     // ------------------------------------------------------------------------
-    // internal handlers for MSW messages: all handlers return a boolen value:
+    // internal handlers for MSW messages: all handlers return a boolean value:
     // TRUE means that the handler processed the event and FALSE that it didn't
     // ------------------------------------------------------------------------