]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/choicdgg.cpp
corrected the invalidation when resizing windows (was only invalidating the client...
[wxWidgets.git] / src / generic / choicdgg.cpp
index 99d5079b4f1411cbc5b7ca9cd2bbb08d70f4f49a..c56105fb18b1ef0e1f4c410b2a97339f6dd3c17b 100644 (file)
@@ -81,9 +81,10 @@ int ConvertWXArrayToC(const wxArrayString& aChoices, wxString **choices)
 {
     int n = aChoices.GetCount();
     *choices = new wxString[n];
+
     for ( int i = 0; i < n; i++ )
     {
-        *choices[i] = aChoices[i];
+        (*choices)[i] = aChoices[i];   
     }
 
     return n;