diff options
author | Kristian Rietveld <kris@imendio.com> | 2006-10-18 12:06:42 +0000 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2006-10-18 12:06:42 +0000 |
commit | faaf7814a400206d198eef80a9762ee4e8c7d374 (patch) | |
tree | 4a3e2ffbb78b2defa29a0f8d8a6e095c1b7106ee /tests/testcombo.c | |
parent | a1808a8ef3793f5b15cf7614a79340a3ebed5a17 (diff) | |
download | gtk+-faaf7814a400206d198eef80a9762ee4e8c7d374.tar.gz |
connect to notify::popup-shown instead of popup-show (the latter does not
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).
Diffstat (limited to 'tests/testcombo.c')
-rw-r--r-- | tests/testcombo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcombo.c b/tests/testcombo.c index 9f9f1641cf..12d8de3447 100644 --- a/tests/testcombo.c +++ b/tests/testcombo.c @@ -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); |