]> Pileus Git - ~andy/gtk/commitdiff
it's _set_active, not _set_active_item.
authorKristian Rietveld <kris@gtk.org>
Wed, 15 Oct 2003 20:41:22 +0000 (20:41 +0000)
committerKristian Rietveld <kristian@src.gnome.org>
Wed, 15 Oct 2003 20:41:22 +0000 (20:41 +0000)
Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>

* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
_set_active, not _set_active_item.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcomboboxentry.c

index b59188a0ba445e6a9be4bff6971cdf83f81236df..79756b31d7ccd17f4f7cfc9922cde60b88607856 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
+       _set_active, not _set_active_item.
+
 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtkcombobox.h: add padding to the class structure.
index b59188a0ba445e6a9be4bff6971cdf83f81236df..79756b31d7ccd17f4f7cfc9922cde60b88607856 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
+       _set_active, not _set_active_item.
+
 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtkcombobox.h: add padding to the class structure.
index b59188a0ba445e6a9be4bff6971cdf83f81236df..79756b31d7ccd17f4f7cfc9922cde60b88607856 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
+       _set_active, not _set_active_item.
+
 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtkcombobox.h: add padding to the class structure.
index b59188a0ba445e6a9be4bff6971cdf83f81236df..79756b31d7ccd17f4f7cfc9922cde60b88607856 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
+       _set_active, not _set_active_item.
+
 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtkcombobox.h: add padding to the class structure.
index b59188a0ba445e6a9be4bff6971cdf83f81236df..79756b31d7ccd17f4f7cfc9922cde60b88607856 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
+       _set_active, not _set_active_item.
+
 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtkcombobox.h: add padding to the class structure.
index 6cd0afe3a7b4cfe691e268e7817113aedab253e0..887049cf23d6cb66fcf46acfccad5e5cb59fcf38 100644 (file)
@@ -128,7 +128,7 @@ gtk_combo_box_entry_init (GtkComboBoxEntry *entry_box)
   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (entry_box),
                               entry_box->priv->text_renderer, TRUE);
 
-  gtk_combo_box_set_active_item (GTK_COMBO_BOX (entry_box), -1);
+  gtk_combo_box_set_active (GTK_COMBO_BOX (entry_box), -1);
 
   g_signal_connect (entry_box->priv->entry, "changed",
                     G_CALLBACK (gtk_combo_box_entry_contents_changed),