don't list SetSelection() as being deprecated, it isn't

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-01-31 17:14:41 +00:00
parent ca164e2337
commit 4863e55108

View File

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