]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/listbox.cpp
Corrected small mistake (set static variable)
[wxWidgets.git] / src / gtk / listbox.cpp
index ae049dada82b7515e71eb127d0c798a9d635275c..9027f25b83ee71094c42c7385986079fc93841df 100644 (file)
@@ -310,8 +310,10 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id,
     gtk_widget_show( GTK_WIDGET(m_list) );
 
     wxSize newSize = size;
-    if (newSize.x == -1) newSize.x = 100;
-    if (newSize.y == -1) newSize.y = 110;
+    if (newSize.x == -1)
+        newSize.x = 100;
+    if (newSize.y == -1)
+        newSize.y = 110;
     SetSize( newSize.x, newSize.y );
 
     if ( style & wxLB_SORT )
@@ -319,6 +321,10 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id,
         // this will change DoAppend() behaviour
         m_strings = new wxSortedArrayString;
     }
+    else
+    {
+        m_strings = (wxSortedArrayString *)NULL;
+    }
 
     for (int i = 0; i < n; i++)
     {