[epiphany] uri-tester: Fix typo in function name



commit 3e29420ac0118250927eca10709f8fe2b17a40e2
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Thu Dec 22 10:34:21 2016 -0600

    uri-tester: Fix typo in function name

 embed/ephy-embed-shell.c              |    2 +-
 embed/web-extension/ephy-uri-tester.c |    2 +-
 lib/ephy-uri-tester-shared.c          |    2 +-
 lib/ephy-uri-tester-shared.h          |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index ba29ab0..2778773 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -800,7 +800,7 @@ ephy_embed_shell_update_adblock_filter_file (EphyEmbedShell *shell)
 {
   GFile *filter_file;
 
-  filter_file = ephy_uri_tester_get_adblock_filer_file (ephy_embed_shell_ensure_adblock_data_dir (shell));
+  filter_file = ephy_uri_tester_get_adblock_filter_file (ephy_embed_shell_ensure_adblock_data_dir (shell));
 
   if (!adblock_filter_file_is_valid (filter_file))
     ephy_embed_shell_retrieve_filter_file (shell, filter_file);
diff --git a/embed/web-extension/ephy-uri-tester.c b/embed/web-extension/ephy-uri-tester.c
index 1b25768..c8d548f 100644
--- a/embed/web-extension/ephy-uri-tester.c
+++ b/embed/web-extension/ephy-uri-tester.c
@@ -667,7 +667,7 @@ ephy_uri_tester_load_sync (GTask         *task,
                                  tester);
 #endif
 
-  filter_file = ephy_uri_tester_get_adblock_filer_file (tester->adblock_data_dir);
+  filter_file = ephy_uri_tester_get_adblock_filter_file (tester->adblock_data_dir);
   if (!g_file_query_exists (filter_file, NULL)) {
     GError *error = NULL;
 
diff --git a/lib/ephy-uri-tester-shared.c b/lib/ephy-uri-tester-shared.c
index 40bba1c..cf4ccee 100644
--- a/lib/ephy-uri-tester-shared.c
+++ b/lib/ephy-uri-tester-shared.c
@@ -22,7 +22,7 @@
 #include "ephy-uri-tester-shared.h"
 
 GFile *
-ephy_uri_tester_get_adblock_filer_file (const char *adblock_data_dir)
+ephy_uri_tester_get_adblock_filter_file (const char *adblock_data_dir)
 {
   char *filter_filename, *filter_path;
   GFile *filter_file;
diff --git a/lib/ephy-uri-tester-shared.h b/lib/ephy-uri-tester-shared.h
index 2c57856..abbbee1 100644
--- a/lib/ephy-uri-tester-shared.h
+++ b/lib/ephy-uri-tester-shared.h
@@ -26,6 +26,6 @@ G_BEGIN_DECLS
 
 #define ADBLOCK_FILTER_URL "https://easylist-downloads.adblockplus.org/easylist.txt";
 
-GFile *ephy_uri_tester_get_adblock_filer_file (const char *adblock_data_dir);
+GFile *ephy_uri_tester_get_adblock_filter_file (const char *adblock_data_dir);
 
 G_END_DECLS


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]