]> git.saurik.com Git - wxWidgets.git/commitdiff
Correcteded wxComboBox::Clear
authorRobert Roebling <robert@roebling.de>
Wed, 22 Feb 2006 22:37:15 +0000 (22:37 +0000)
committerRobert Roebling <robert@roebling.de>
Wed, 22 Feb 2006 22:37:15 +0000 (22:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37670 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/combobox.cpp

index 07d6d0a77771986fb53f9459587562f436c531b8..b5f70f7a9e0f02ad5d0762599e921f7e8035c767 100644 (file)
@@ -573,7 +573,7 @@ void wxComboBox::Clear()
     {
         GtkComboBox* combobox = GTK_COMBO_BOX( m_widget );
         int i;
-        for (i = 0; i++; i < GetCount())
+        for (i = 0; i < GetCount(); i++)
             gtk_combo_box_remove_text( combobox, 0 );
     }
     else