[epiphany] view-source-handler: Fix function naming blooper
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany] view-source-handler: Fix function naming blooper
- Date: Tue, 13 Sep 2016 00:00:55 +0000 (UTC)
commit 203b4d08be16b5a03e65c376f1cc2b0a972383b2
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Mon Sep 12 18:37:11 2016 -0500
view-source-handler: Fix function naming blooper
embed/ephy-view-source-handler.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/embed/ephy-view-source-handler.c b/embed/ephy-view-source-handler.c
index 13a4b9b..6f96296 100644
--- a/embed/ephy-view-source-handler.c
+++ b/embed/ephy-view-source-handler.c
@@ -178,8 +178,8 @@ ephy_view_source_request_begin_get_source_from_uri (EphyViewSourceRequest *reque
}
static gint
-web_view_is_displaying_matching_uri (EphyEmbed *embed,
- SoupURI *uri)
+embed_is_displaying_matching_uri (EphyEmbed *embed,
+ SoupURI *uri)
{
EphyWebView *web_view;
SoupURI *view_uri;
@@ -220,7 +220,7 @@ get_web_view_matching_uri (SoupURI *uri)
goto out;
embeds = ephy_embed_container_get_children (EPHY_EMBED_CONTAINER (window));
- found = g_list_find_custom (embeds, uri, (GCompareFunc)web_view_is_displaying_matching_uri);
+ found = g_list_find_custom (embeds, uri, (GCompareFunc)embed_is_displaying_matching_uri);
if (found)
embed = found->data;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]