diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-02-24 23:00:17 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-02-24 23:00:17 +0800 |
commit | fa2ed1162e71eb37859ec2a5ef38a9387d06b5af (patch) | |
tree | 99fff77df808014fe4dc166acc91a7e1b05cfda1 /src/ephy-link.c | |
parent | 66e037be87fdb7361fa5d69cfe61b17468a82a56 (diff) | |
download | gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar.gz gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar.bz2 gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar.lz gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar.xz gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.tar.zst gsoc2013-epiphany-fa2ed1162e71eb37859ec2a5ef38a9387d06b5af.zip |
Make the signal RUN_LAST.
2005-02-24 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-link.c: (ephy_link_base_init):
Make the signal RUN_LAST.
* src/ephy-tab.c: (ephy_tab_get_type), (open_link_in_new_tab),
(clipboard_text_received_cb):
Make EphyTab implement EphyLink interface.
* src/ephy-window.c: (modal_alert_cb), (tab_added_cb),
(tab_removed_cb), (ephy_window_open_link):
Attach to link signal on EphyTab.
Don't switch tabs to modal alerts in ppv mode; block the alerts
instead.
2005-02-23 Carlos Garnacho Parro <carlos@gnome.org>
Diffstat (limited to 'src/ephy-link.c')
-rw-r--r-- | src/ephy-link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-link.c b/src/ephy-link.c index 06c58afff..e48758e8c 100644 --- a/src/ephy-link.c +++ b/src/ephy-link.c @@ -45,7 +45,7 @@ ephy_link_base_init (gpointer g_class) signals[OPEN_LINK] = g_signal_new
("open-link",
EPHY_TYPE_LINK,
- G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST,
+ G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EphyLinkIface, open_link),
ephy_signal_accumulator_object, ephy_tab_get_type,
ephy_marshal_OBJECT__STRING_OBJECT_FLAGS,
|