]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/tglbtn.h
fix some typos and other minor problems (#9886)
[wxWidgets.git] / interface / wx / tglbtn.h
index 4a679c7ee14fa2b56626037fac96c9268211deb2..9bbfb588df45bd1114cdb51da1ed650af7eeca66 100644 (file)
@@ -9,7 +9,6 @@
 
 /**
     @class wxToggleButton
-    @wxheader{tglbtn.h}
 
     wxToggleButton is a button that stays pressed when clicked by the user. In
     other words, it is similar to wxCheckBox in
 class wxToggleButton : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor.
+    */
+    wxToggleButton();
+    
     /**
         Constructor, creating and showing a toggle button.
 
@@ -59,7 +62,6 @@ public:
 
         @see Create(), wxValidator
     */
-    wxToggleButton();
     wxToggleButton(wxWindow* parent, wxWindowID id,
                    const wxString& label,
                    const wxPoint& pos = wxDefaultPosition,
@@ -67,7 +69,6 @@ public:
                    long style = 0,
                    const wxValidator& val = wxDefaultValidator,
                    const wxString& name = "checkBox");
-    //@}
 
     /**
         Destructor, destroying the toggle button.
@@ -106,7 +107,6 @@ public:
 
 /**
     @class wxBitmapToggleButton
-    @wxheader{tglbtn.h}
 
     wxBitmapToggleButton is a wxToggleButton
     that contains a bitmap instead of text.
@@ -125,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,
@@ -138,7 +141,6 @@ public:
                          long style = 0,
                          const wxValidator& val = wxDefaultValidator,
                          const wxString& name = "checkBox");
-    //@}
 
     /**
         Create method for two-step construction.