From: Robert Roebling Date: Mon, 2 Jun 2008 20:45:41 +0000 (+0000) Subject: Make wxMenuItem::GetLabelText readable again X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3b3026ca0b7b09eed86aabb84b02ae5824ee07f9 Make wxMenuItem::GetLabelText readable again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/menuitem.h b/interface/menuitem.h index 9296ab2ba3..dacdc8094d 100644 --- a/interface/menuitem.h +++ b/interface/menuitem.h @@ -140,10 +140,6 @@ public: wxString GetLabel() const; /** - Strips all accelerator characters and mnemonics from the given @e text. - For example, - - will return just @c "Hello". This function is deprecated; please use GetLabelText() instead. @see GetText(), GetLabel() @@ -152,7 +148,11 @@ public: /** Strips all accelerator characters and mnemonics from the given @e text. - For example, + For example: + + @code + wxMenuItem::GetLabelfromText( "&Hello\tCtrl-h"); + @endcode will return just @c "Hello".