]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/statline.h
fixing file paths after renaming
[wxWidgets.git] / interface / statline.h
index 2f624ef1164cc224f74d73a240fd8615524a1433..226f28a70a55f29921610eb33146d6c716985f42 100644 (file)
@@ -14,9 +14,9 @@
     groups of controls. The line may be only vertical or horizontal.
 
     @beginStyleTable
-    @style{wxLI_HORIZONTAL}:
+    @style{wxLI_HORIZONTAL}
            Creates a horizontal line.
-    @style{wxLI_VERTICAL}:
+    @style{wxLI_VERTICAL}
            Creates a vertical line.
     @endStyleTable
 
 class wxStaticLine : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor
+    */
+    wxStaticLine();
+    
     /**
         Constructor, creating and showing a static line.
 
@@ -49,13 +53,11 @@ public:
 
         @see Create()
     */
-    wxStaticLine();
     wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = wxLI_HORIZONTAL,
                  const wxString& name = "staticLine");
-    //@}
 
     /**
         Creates the static line for two-step construction. See wxStaticLine()