]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/statbox.h
fixing file paths after renaming
[wxWidgets.git] / interface / statbox.h
index 3475a407f82c0674cd7f8479e428d03455b3dc17..b6719749cbae2ba6403db47202cfd22a59970cdf 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        statbox.h
-// Purpose:     documentation for wxStaticBox class
+// Purpose:     interface of wxStaticBox
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
 
     @library{wxcore}
     @category{ctrl}
-    @appearance{staticbox.png}
+    <!-- @appearance{staticbox.png} -->
 
-    @seealso
-    wxStaticText
+    @see wxStaticText
 */
 class wxStaticBox : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor
+    */
+    wxStaticBox();
+    
     /**
         Constructor, creating and showing a static box.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -53,17 +56,15 @@ public:
             Window style. See wxStaticBox.
         @param name
             Window name.
-        
+
         @see Create()
     */
-    wxStaticBox();
     wxStaticBox(wxWindow* parent, wxWindowID id,
                 const wxString& label,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 long style = 0,
                 const wxString& name = "staticBox");
-    //@}
 
     /**
         Destructor, destroying the group box.
@@ -81,3 +82,4 @@ public:
                 long style = 0,
                 const wxString& name = "staticBox");
 };
+