Use Doxygen @deprecated tags for deprecated methods.

Instead of just mentioning that the methods are deprecated in the
documentation text, use the @deprecated tag for them to make it possible to
detect it in documentation-processing tools too.

Closes #16102.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76175 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-03-20 19:45:48 +00:00
parent 78de4fe291
commit d1c6d8baf9

View File

@ -2244,8 +2244,9 @@ public:
/**
Override this to react to a left click. This method will only be
called in @c wxDATAVIEW_CELL_ACTIVATABLE mode. This method is
deprecated, please use ActivateCell instead.
called in @c wxDATAVIEW_CELL_ACTIVATABLE mode.
@deprecated Use ActivateCell instead.
*/
virtual bool LeftClick( wxPoint cursor,
wxRect cell,
@ -2254,8 +2255,9 @@ public:
unsigned int col );
/**
Override this to react to the activation of a cell. This method is
deprecated, please use ActivateCell instead.
Override this to react to the activation of a cell.
@deprecated Use ActivateCell instead.
*/
virtual bool Activate(wxRect cell,
wxDataViewModel * model,