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