summaryrefslogtreecommitdiff
path: root/src/search-provider
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2017-02-19 12:23:09 -0600
committerMichael Catanzaro <mcatanzaro@gnome.org>2017-02-19 12:52:39 -0600
commit937160676e46600c532450007764100e017761a0 (patch)
treeff04ab6e4dbe395ac5c731166fc08edb42ddc8c6 /src/search-provider
parent122612b18bf4eec34b6b8ae4917f2b4fab021c47 (diff)
downloadepiphany-937160676e46600c532450007764100e017761a0.tar.gz
embed-shell: Fix dumb return types
Diffstat (limited to 'src/search-provider')
-rw-r--r--src/search-provider/ephy-search-provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search-provider/ephy-search-provider.c b/src/search-provider/ephy-search-provider.c
index 57847d2db..977fa7d3f 100644
--- a/src/search-provider/ephy-search-provider.c
+++ b/src/search-provider/ephy-search-provider.c
@@ -370,7 +370,7 @@ ephy_search_provider_init (EphySearchProvider *self)
filename = g_build_filename (ephy_dot_dir (), EPHY_HISTORY_FILE, NULL);
self->bookmarks_manager = ephy_bookmarks_manager_new ();
- self->model = ephy_completion_model_new (EPHY_HISTORY_SERVICE (ephy_embed_shell_get_global_history_service (shell)),
+ self->model = ephy_completion_model_new (ephy_embed_shell_get_global_history_service (shell),
self->bookmarks_manager);
g_free (filename);