diff options
author | Cosimo Cecchi <cosimoc@src.gnome.org> | 2009-01-02 19:51:19 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2009-01-02 19:51:19 +0800 |
commit | fce48612ebcf5cdb4b7b75378a4dc930b4db0e8c (patch) | |
tree | f8acba51bdb142dd75817dfd11138d3dfc685f33 /lib | |
parent | e1c0aaa12f1d1e0f584a549f820d21de34e7b432 (diff) | |
download | gsoc2013-epiphany-fce48612ebcf5cdb4b7b75378a4dc930b4db0e8c.tar.gz gsoc2013-epiphany-fce48612ebcf5cdb4b7b75378a4dc930b4db0e8c.tar.zst gsoc2013-epiphany-fce48612ebcf5cdb4b7b75378a4dc930b4db0e8c.zip |
Adapt to the modified GTK+ API.
svn path=/trunk/; revision=8659
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-search-entry.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index b89a92442..18d123de1 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -850,7 +850,7 @@ ephy_location_entry_construct_contents (EphyLocationEntry *lentry) gtk_entry_set_icon_activatable (GTK_ENTRY (priv->entry), GTK_ENTRY_ICON_SECONDARY, TRUE); - g_signal_connect (priv->entry, "icon-pressed", + g_signal_connect (priv->entry, "icon-press", G_CALLBACK (icon_button_press_event_cb), lentry); g_signal_connect (priv->entry, "populate_popup", diff --git a/lib/widgets/ephy-search-entry.c b/lib/widgets/ephy-search-entry.c index c1e4f3611..1713e5c43 100644 --- a/lib/widgets/ephy-search-entry.c +++ b/lib/widgets/ephy-search-entry.c @@ -141,7 +141,7 @@ ephy_search_entry_init (EphySearchEntry *entry) GTK_ENTRY_ICON_SECONDARY, _("Clear")); g_signal_connect (entry, - "icon-pressed", + "icon-press", G_CALLBACK (search_entry_clear_cb), NULL); g_signal_connect (entry, |