]> Pileus Git - ~andy/gtk/commitdiff
connect to notify::popup-shown instead of popup-show (the latter does not
authorKristian Rietveld <kris@imendio.com>
Wed, 18 Oct 2006 12:06:42 +0000 (12:06 +0000)
committerKristian Rietveld <kristian@src.gnome.org>
Wed, 18 Oct 2006 12:06:42 +0000 (12:06 +0000)
2006-10-18  Kristian Rietveld  <kris@imendio.com>

* tests/testcombo.c (main): connect to notify::popup-shown instead of
popup-show (the latter does not exist).

ChangeLog
tests/testcombo.c

index 439c70909b7b34f58fcad21c282dccd075bad474..7ec7591316a9fec00f95f668b871d21c240c2cdf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-18  Kristian Rietveld  <kris@imendio.com>
+
+       * tests/testcombo.c (main): connect to notify::popup-shown instead of
+       popup-show (the latter does not exist).
+
 2006-10-15  Paolo Borelli  <pborelli@katamail.com>
 
        * gtk/gtkicontheme.c (pixbuf_supports_svg): plug memory leak.
index 9f9f1641cf444ca29cb516fb72e48492bd77737a..12d8de34475e14cb418db55c8d007b2eab7dd9d9 100644 (file)
@@ -1111,7 +1111,7 @@ main (int argc, char **argv)
 
         model = create_empty_list_blaat ();
         combobox = gtk_combo_box_new_with_model (model);
-       g_signal_connect (combobox, "popup-show", 
+       g_signal_connect (combobox, "notify::popup-shown", 
                          G_CALLBACK (populate_list_blaat), combobox);
 
        gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);