From: Robert Roebling Date: Tue, 22 Apr 2008 08:26:09 +0000 (+0000) Subject: Minor correction X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d2ddc77dce48ecf556dd195513f06f8f5b54fe7d Minor correction git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53309 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/scrolwin.h b/interface/scrolwin.h index d8b65f75a6..b05bc233fc 100644 --- a/interface/scrolwin.h +++ b/interface/scrolwin.h @@ -19,15 +19,15 @@ - ::wxScrolledWindow, aka wxScrolled, is equivalent to ::wxScrolledWindow from earlier versions. Derived from wxPanel, it shares wxPanel's behaviour with regard to TAB traversal and focus handling. Use - this if the scrolled window will have children controls. + this if the scrolled window will have child controls. - ::wxScrolledCanvas, aka wxScrolled, derives from wxWindow and so doesn't handle children specially. This is suitable e.g. for implementating scrollable controls such as tree or list controls. Starting from version 2.4 of wxWidgets, there are several ways to use a - wxScrolled. In particular, there are now three ways to set the size of the - scrolling area: + ::wxScrolledWindow (and now wxScrolled). In particular, there are + three ways to set the size of the scrolling area: One way is to set the scrollbars directly using a call to SetScrollbars(). This is the way it used to be in any previous version of wxWidgets and it @@ -98,7 +98,7 @@ implementation as a guide to build your own scroll behaviour or use wxVScrolledWindow or its variants. - @since wxScrolled template exists since version 2.9.0. In older versions, + @since The wxScrolled template exists since version 2.9.0. In older versions, only ::wxScrolledWindow (equivalent of wxScrolled) was available.