From: Francesco Montorsi Date: Wed, 26 Nov 2008 16:18:28 +0000 (+0000) Subject: clarified that Raise() and Lower() only work for wxTopLevelWindows (closes #4717) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2b4367d520dc794b30e947e46888c30fb85b044b clarified that Raise() and Lower() only work for wxTopLevelWindows (closes #4717) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/window.h b/interface/wx/window.h index b20b43dcde..ab349f2486 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -1515,6 +1515,9 @@ public: /** Lowers the window to the bottom of the window hierarchy (Z-order). + @remarks + This function only works for wxTopLevelWindow-derived classes. + @see Raise() */ virtual void Lower(); @@ -1748,7 +1751,9 @@ public: /** Raises the window to the top of the window hierarchy (Z-order). - In current version of wxWidgets this works both for managed and child windows. + + @remarks + This function only works for wxTopLevelWindow-derived classes. @see Lower() */