]> git.saurik.com Git - wxWidgets.git/commitdiff
don't list SetSelection() as being deprecated, it isn't
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 31 Jan 2009 17:14:41 +0000 (17:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 31 Jan 2009 17:14:41 +0000 (17:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/bookctrl.h

index 05fe81a3b770a138184d6b77429dbc4fd1cc304f..2039da442d8a322d248a2bd3a1337c4054b306b9 100644 (file)
@@ -147,11 +147,10 @@ public:
 
     /**
         Sets the selection for the given page, returning the previous selection.
-        The call to this function generates the page changing events.
 
-        @deprecated
-        This function is deprecated and should not be used in new code.
-        Please use the ChangeSelection() function instead.
+        Notice that the call to this function generates the page changing
+        events, use the ChangeSelection() function if you don't want these
+        events to be generated.
 
         @see GetSelection()
     */
@@ -166,9 +165,10 @@ public:
     /**
         Changes the selection for the given page, returning the previous selection.
 
-        The call to this function does NOT generate the page changing events.
-        This is the only difference with SetSelection().
-        See @ref overview_eventhandling_prog for more infomation.
+        This function behaves as SetSelection() but does @em not generate the
+        page changing events.
+
+        See @ref overview_eventhandling_prog for more information.
     */
     virtual int ChangeSelection(size_t page) = 0;