class wxToggleButton : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor.
+    */
+    wxToggleButton();
+    
     /**
         Constructor, creating and showing a toggle button.
 
 
         @see Create(), wxValidator
     */
-    wxToggleButton();
     wxToggleButton(wxWindow* parent, wxWindowID id,
                    const wxString& label,
                    const wxPoint& pos = wxDefaultPosition,
                    long style = 0,
                    const wxValidator& val = wxDefaultValidator,
                    const wxString& name = "checkBox");
-    //@}
 
     /**
         Destructor, destroying the toggle button.
 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,
                          long style = 0,
                          const wxValidator& val = wxDefaultValidator,
                          const wxString& name = "checkBox");
-    //@}
 
     /**
         Create method for two-step construction.