From: Robert Roebling Date: Mon, 1 Sep 2008 13:48:57 +0000 (+0000) Subject: Minor doc update X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/23ae751e16775126d7c3a4c70e33e28d0a52bfb7?hp=c71ab7c15cbfa018a549691a4ec407334a2c0132 Minor doc update git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/tglbtn.h b/interface/wx/tglbtn.h index 75f7e4a352..9bbfb588df 100644 --- a/interface/wx/tglbtn.h +++ b/interface/wx/tglbtn.h @@ -33,7 +33,11 @@ class wxToggleButton : public wxControl { public: - //@{ + /** + Default constructor. + */ + wxToggleButton(); + /** Constructor, creating and showing a toggle button. @@ -58,7 +62,6 @@ public: @see Create(), wxValidator */ - wxToggleButton(); wxToggleButton(wxWindow* parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, @@ -66,7 +69,6 @@ public: long style = 0, const wxValidator& val = wxDefaultValidator, const wxString& name = "checkBox"); - //@} /** Destructor, destroying the toggle button. @@ -123,12 +125,15 @@ public: class wxBitmapToggleButton : public wxControl { public: - //@{ + /** + Default constructor. + */ + wxBitmapToggleButton(); + /** Constructor, creating and showing a toggle button with the bitmap @e label. Internally calls Create(). */ - wxBitmapToggleButton(); wxBitmapToggleButton(wxWindow* parent, wxWindowID id, const wxBitmap& label, const wxPoint& pos = wxDefaultPosition, @@ -136,7 +141,6 @@ public: long style = 0, const wxValidator& val = wxDefaultValidator, const wxString& name = "checkBox"); - //@} /** Create method for two-step construction.