]> git.saurik.com Git - wxWidgets.git/commitdiff
correct wxSortedArrayString(wxArrayString) ctor documentation (closes #10944)
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 30 Jun 2009 13:31:53 +0000 (13:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 30 Jun 2009 13:31:53 +0000 (13:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/arrstr.h

index 46d3fed6b6bd0c97c75b12e1359699f3dc7a38e3..dab15fa275a4d6325d92b516fed28a992c1bafd7 100644 (file)
@@ -279,10 +279,12 @@ class wxSortedArrayString : public wxArrayString
 public:
 
     /**
-        Copy constructor. Note that when an array is assigned to a sorted array,
-        its contents is automatically sorted during construction.
+        Conversion constructor.
+
+        Constructs a sorted array with the same contents as the (possibly
+        unsorted) "array" argument.
     */
-    wxArrayString(const wxArrayString& array);
+    wxSortedArrayString(const wxArrayString& array);
 
     /**
         @copydoc wxArrayString::Add()