From 1ba9792547097f87b10940a4e5957fc150aec596 Mon Sep 17 00:00:00 2001 From: YNH Webdev Date: Sun, 15 Sep 2013 13:33:43 +0200 Subject: [PATCH] Fix suggestions --- examples/widgetapp/google_autocompletion.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/widgetapp/google_autocompletion.e b/examples/widgetapp/google_autocompletion.e index 89f35696..75979911 100644 --- a/examples/widgetapp/google_autocompletion.e +++ b/examples/widgetapp/google_autocompletion.e @@ -37,7 +37,7 @@ feature -- Implementation create Result.make_array if curl_handle /= default_pointer then create l_curl_string.make_empty - curl_easy.setopt_string (curl_handle, {CURL_OPT_CONSTANTS}.curlopt_url, "http://suggestqueries.google.com/complete/search?client=firefox&q=" + query_str) + curl_easy.setopt_string (curl_handle, {CURL_OPT_CONSTANTS}.curlopt_url, "http://google.com/complete/search?client=chrome&q=" + query_str) curl_easy.set_write_function (curl_handle) curl_easy.setopt_integer (curl_handle, {CURL_OPT_CONSTANTS}.curlopt_writedata, l_curl_string.object_id) l_result := curl_easy.perform (curl_handle)