summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2016-03-09 17:36:28 +0100
committerCarlos Soriano <csoriano@gnome.org>2016-03-09 17:36:28 +0100
commit2c3f46df0fad0aff0534c411aee24a0b4ef24254 (patch)
tree813ddc9ad0a594adf5026f6f3ae3d16b11a2cf43
parent143b0039e6e660775bca38e3ffbe09fa324d7913 (diff)
downloadnautilus-2c3f46df0fad0aff0534c411aee24a0b4ef24254.tar.gz
shell-search: use correct casting
-rw-r--r--src/nautilus-shell-search-provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-shell-search-provider.c b/src/nautilus-shell-search-provider.c
index c50d7a928..dd91c29b6 100644
--- a/src/nautilus-shell-search-provider.c
+++ b/src/nautilus-shell-search-provider.c
@@ -663,7 +663,7 @@ handle_launch_search (NautilusShellSearchProvider2 *skeleton,
gchar *string = g_strjoinv (" ", terms);
gchar *uri = nautilus_get_home_directory_uri ();
- nautilus_application_search (app, uri, string);
+ nautilus_application_search (NAUTILUS_APPLICATION (app), uri, string);
g_free (string);
g_free (uri);