From: Vadim Zeitlin Date: Sat, 14 Jun 2008 14:07:41 +0000 (+0000) Subject: fix various Doxygen errors (#9573) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e36df6579fef3591e0cbbf9936850b3a053606b4?ds=inline fix various Doxygen errors (#9573) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54212 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/textctrl.h b/interface/textctrl.h index 6a8be8b392..c4f03743d5 100644 --- a/interface/textctrl.h +++ b/interface/textctrl.h @@ -851,19 +851,16 @@ enum wxTextCtrlHitTestResult changes. Notice that this event will be sent when the text controls contents changes -- whether this is due to user input or comes from the program itself (for example, if SetValue() is called); see - ChangeValue() for a function which does not send this event.} This + ChangeValue() for a function which does not send this event. This event is however not sent during the control creation. - @event{EVT_TEXT_ENTER(id, func)} Respond to a wxEVT_COMMAND_TEXT_ENTER event, generated when enter is pressed in a text control which must have wxTE_PROCESS_ENTER style for this event to be generated. - - @event{EVT_TEXT_URL(id, func}} + @event{EVT_TEXT_URL(id, func)} A mouse event occurred over an URL in the text control (wxMSW and wxGTK2 only currently). - - @event{EVT_TEXT_MAXLEN(id, func}} + @event{EVT_TEXT_MAXLEN(id, func)} This event is generated when the user tries to enter more text into the control than the limit set by SetMaxLength(), see its description. @endEventTable @@ -878,6 +875,12 @@ class wxTextCtrl : public wxControl { public: //@{ + /** + Constructor, creating and showing a text control. + @see Create() + */ + wxTextCtrl(); + /** Constructor, creating and showing a text control. @@ -908,7 +911,6 @@ public: @see Create(), wxValidator */ - wxTextCtrl(); wxTextCtrl(wxWindow* parent, wxWindowID id, const wxString& value = "", const wxPoint& pos = wxDefaultPosition, @@ -1247,7 +1249,7 @@ public: Returns @true if this is a single line edit control and @false otherwise. - @see @ref issingleline() IsMultiLine + @see @ref IsSingleLine() IsMultiLine */ bool IsSingleLine() const;