From 156e4360507fbc39e6caef7058e700802a721e2b Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Mon, 11 Jan 2010 23:13:19 -0500 Subject: Remove legacy ALLOW_FIXUP flags This were used by the gecko backend and nowadays are not used at all. Bug #608749 --- src/ephy-home-action.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ephy-home-action.c') diff --git a/src/ephy-home-action.c b/src/ephy-home-action.c index 7dc7cf8f2..c2826a3bf 100644 --- a/src/ephy-home-action.c +++ b/src/ephy-home-action.c @@ -121,13 +121,13 @@ action_name_association (GtkAction *action, { ephy_link_open (EPHY_LINK (action), address, NULL, - EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP); + EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO); } else { ephy_home_action_open (action, address, - EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP); + EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO); } } else if (strcmp (action_name, "FileNewWindow") == 0) @@ -136,13 +136,13 @@ action_name_association (GtkAction *action, { ephy_link_open (EPHY_LINK (action), address, NULL, - EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP); + EPHY_LINK_NEW_WINDOW); } else { ephy_home_action_open (action, address, - EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP); + EPHY_LINK_NEW_WINDOW); } } else if (strcmp (action_name, "GoHome") == 0) -- cgit v1.2.3