]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/statline.h
fixing file paths after renaming
[wxWidgets.git] / interface / statline.h
index 346d021ab917549d7aebd2044e8a48398b53ea63..226f28a70a55f29921610eb33146d6c716985f42 100644 (file)
@@ -14,9 +14,9 @@
     groups of controls. The line may be only vertical or horizontal.
 
     @beginStyleTable
     groups of controls. The line may be only vertical or horizontal.
 
     @beginStyleTable
-    @style{wxLI_HORIZONTAL}:
+    @style{wxLI_HORIZONTAL}
            Creates a horizontal line.
            Creates a horizontal line.
-    @style{wxLI_VERTICAL}:
+    @style{wxLI_VERTICAL}
            Creates a vertical line.
     @endStyleTable
 
            Creates a vertical line.
     @endStyleTable
 
 class wxStaticLine : public wxControl
 {
 public:
 class wxStaticLine : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor
+    */
+    wxStaticLine();
+    
     /**
         Constructor, creating and showing a static line.
     /**
         Constructor, creating and showing a static line.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -46,16 +50,14 @@ public:
             Window style (either wxLI_HORIZONTAL or wxLI_VERTICAL).
         @param name
             Window name.
             Window style (either wxLI_HORIZONTAL or wxLI_VERTICAL).
         @param name
             Window name.
-        
+
         @see Create()
     */
         @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");
     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()
 
     /**
         Creates the static line for two-step construction. See wxStaticLine()