[Title] Fix bug that title is treated as url.
[Issue#] N_SE-8931
[Problem] ewk_view_uri_get() returns title
[Cause] title was copied to url in ewkViewSetTitleAndURL()
[Solution] change title to url
Change-Id: I44f5eda040ea95e98f6772ef5bf37f3273013c3b
if (title && eina_stringshare_replace(&priv->title, title))
evas_object_smart_callback_call(ewkView, "title,changed", static_cast<void*>(const_cast<char*>(priv->title)));
- if (url && eina_stringshare_replace(&priv->uri, title))
+ if (url && eina_stringshare_replace(&priv->uri, url))
evas_object_smart_callback_call(ewkView, "uri,changed", static_cast<void*>(const_cast<char*>(priv->uri)));
}