]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/editlbox.h
use @a instead of @e where it makes sense
[wxWidgets.git] / interface / editlbox.h
index 9f62c0cd8f94f7fc858d37566f5406d283ae2876..9e74f4c36d5b5f71412e77708f3c21c0b925df31 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        editlbox.h
-// Purpose:     documentation for wxEditableListBox class
+// Purpose:     interface of wxEditableListBox
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -9,10 +9,10 @@
 /**
     @class wxEditableListBox
     @wxheader{editlbox.h}
-    
+
     An editable listbox is composite control that lets the
     user easily enter, delete and reorder a list of strings.
-    
+
     @beginStyleTable
     @style{wxEL_ALLOW_NEW}:
            Allows the user to enter new strings.
     @style{wxEL_DEFAULT_STYLE}:
            wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE
     @endStyleTable
-    
+
     @library{wxadv}
     @category{FIXME}
-    
-    @seealso
-    wxListBox
+
+    @see wxListBox
 */
 class wxEditableListBox : public wxPanel
 {
@@ -38,38 +37,33 @@ public:
     //@{
     /**
         Constructor, creating and showing a list box.
-        
-        @param parent 
-        Parent window. Must not be @NULL.
-        
-        @param id 
-        Window identifier. The value wxID_ANY indicates a default value.
-        
-        @param label 
-        The text shown just before the list control.
-        
-        @param pos 
-        Window position.
-        
-        @param size 
-        Window size. If wxDefaultSize is specified then the window is sized
-        appropriately.
-        
-        @param style 
-        Window style. See wxEditableListBox.
-        
-        @param name 
-        Window name.
-        
-        @sa Create()
+
+        @param parent
+            Parent window. Must not be @NULL.
+        @param id
+            Window identifier. The value wxID_ANY indicates a default value.
+        @param label
+            The text shown just before the list control.
+        @param pos
+            Window position.
+        @param size
+            Window size. If wxDefaultSize is specified then the window is
+        sized
+            appropriately.
+        @param style
+            Window style. See wxEditableListBox.
+        @param name
+            Window name.
+
+        @see Create()
     */
     wxEditableListBox();
-        wxEditableListBox(wxWindow* parent, wxWindowID id,
-                          const wxString& label,
-                          const wxPoint& pos = wxDefaultPosition,
-                          const wxSize& size = wxDefaultSize,
-                          long style = wxEL_DEFAULT_STYLE,
-                          const wxString& name = "editableListBox");
+    wxEditableListBox(wxWindow* parent, wxWindowID id,
+                      const wxString& label,
+                      const wxPoint& pos = wxDefaultPosition,
+                      const wxSize& size = wxDefaultSize,
+                      long style = wxEL_DEFAULT_STYLE,
+                      const wxString& name = "editableListBox");
     //@}
 
     /**
@@ -93,3 +87,4 @@ public:
     */
     void SetStrings(const wxArrayString& strings);
 };
+