Fixed Hangeul title is not displayed properly in WebClip Livebox.
authorYuni Jeong <yhnet.jung@samsung.com>
Tue, 9 Apr 2013 13:04:00 +0000 (22:04 +0900)
committerYuni Jeong <yhnet.jung@samsung.com>
Tue, 9 Apr 2013 13:40:01 +0000 (22:40 +0900)
[Title] Fixed Hangeul title is not displayed properly in WebClip Livebox.
[Issue#] N/A
[Problem] Hangeul title is not displayed properly in WebClip Livebox.
[Cause] When changing url string to String type, String::fromUTF8() is not used.
[Solution] Used String::fromUTF8() for chaning url string to String type.

Change-Id: I2e1807ec349d45f0439e9f5e0d2ac3e02ade45c4

Source/WebKit2/UIProcess/API/efl/ewk_view.cpp

index 7a61a45..083bf4c 100755 (executable)
@@ -1348,7 +1348,7 @@ Eina_Bool ewk_view_url_set(Evas_Object* ewkView, const char* url)
     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
     EINA_SAFETY_ON_NULL_RETURN_VAL(url, false);
 
-    impl->pageProxy->loadURL(url);
+    impl->pageProxy->loadURL(String::fromUTF8(url));
     impl->informURLChange();
 
     return true;