From 62f2c31cefbd94e993584736fc82e33d4c62060b Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Wed, 8 Dec 2010 15:35:56 +0100 Subject: ephy-permission-manager: fix names of permission types Prefix them with EPHY_PERMISSION_TYPE instead of "EPT_". Bug #636790 --- embed/ephy-web-view.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'embed/ephy-web-view.c') diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 6a0c52f87..9a46a228c 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -306,7 +306,9 @@ ephy_web_view_set_popups_allowed (EphyWebView *view, permission = allowed ? EPHY_PERMISSION_ALLOWED : EPHY_PERMISSION_DENIED; - ephy_permission_manager_add_permission (manager, location, EPT_POPUP, permission); + ephy_permission_manager_add_permission (manager, location, + EPHY_PERMISSION_TYPE_POPUP, + permission); if (allowed) { popups_manager_show_all (view); @@ -334,7 +336,7 @@ ephy_web_view_get_popups_allowed (EphyWebView *view) if (location == NULL) return FALSE;/* FALSE, TRUE… same thing */ response = ephy_permission_manager_test_permission - (permission_manager, location, EPT_POPUP); + (permission_manager, location, EPHY_PERMISSION_TYPE_POPUP); switch (response) { case EPHY_PERMISSION_ALLOWED: -- cgit