diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-06-15 03:12:10 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-06-15 03:12:10 +0800 |
commit | 3053ba8e28f69454242b74fd10085cd6a42ced84 (patch) | |
tree | a4df89724e3e85e29a4377b61a44dd62c5bb197b | |
parent | 3b63c65f29d2e5580f9bf4bd1e36eee7182b091f (diff) | |
download | gsoc2013-epiphany-3053ba8e28f69454242b74fd10085cd6a42ced84.tar.gz gsoc2013-epiphany-3053ba8e28f69454242b74fd10085cd6a42ced84.tar.zst gsoc2013-epiphany-3053ba8e28f69454242b74fd10085cd6a42ced84.zip |
Point to the 'search_key_press' function int eh EphyEmbedIface rather than
2005-06-14 Crispin Flowerday <gnome@flowerday.cx>
* embed/ephy-embed.c (ephy_embed_load_url):
Point to the 'search_key_press' function int eh EphyEmbedIface
rather than the context menu one
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/ephy-embed.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2005-06-14 Crispin Flowerday <gnome@flowerday.cx> + + * embed/ephy-embed.c (ephy_embed_load_url): + + Point to the 'search_key_press' function int eh EphyEmbedIface + rather than the context menu one + 2005-06-12 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/mozilla-ember-persist.cpp: (impl_to_string): diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index eb9785b29..c6fa1431a 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -361,7 +361,7 @@ ephy_embed_base_init (gpointer g_class) g_signal_new ("ge-search-key-press", EPHY_TYPE_EMBED, G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EphyEmbedIface, context_menu), + G_STRUCT_OFFSET (EphyEmbedIface, search_key_press), g_signal_accumulator_true_handled, NULL, ephy_marshal_BOOLEAN__BOXED, G_TYPE_BOOLEAN, |