]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/listbox.cpp
remove unused function GTKSetItem()
[wxWidgets.git] / src / gtk / listbox.cpp
index 5f1a0ed7a1ceed48337994289b484732f1f25a1e..f2717c6c82785b5b086caa6698e715c3384c536c 100644 (file)
@@ -555,23 +555,6 @@ GtkTreeEntry *wxListBox::GTKGetEntry(unsigned n) const
     return GetEntry(m_liststore, &iter, this);
 }
 
-void wxListBox::GTKSetItem(GtkTreeIter& iter, const GtkTreeEntry *entry)
-{
-#if wxUSE_CHECKLISTBOX
-    if ( m_hasCheckBoxes )
-    {
-        gtk_list_store_set(m_liststore, &iter,
-                           0, FALSE, // FALSE == not toggled
-                           1, entry,
-                           -1);
-    }
-    else
-#endif // wxUSE_CHECKLISTBOX
-    {
-        gtk_list_store_set(m_liststore, &iter, 0, entry, -1);
-    }
-}
-
 // ----------------------------------------------------------------------------
 // client data
 // ----------------------------------------------------------------------------