From d1c6d8baf935c722f0f14561c46328cd23cd5602 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 20 Mar 2014 19:45:48 +0000 Subject: [PATCH] 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 --- interface/wx/dataview.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/interface/wx/dataview.h b/interface/wx/dataview.h index 98d93c202e..dfadd2c1c5 100644 --- a/interface/wx/dataview.h +++ b/interface/wx/dataview.h @@ -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,