Title: [148014] trunk/Source/WebKit2
Revision
148014
Author
[email protected]
Date
2013-04-09 05:13:01 -0700 (Tue, 09 Apr 2013)

Log Message

Fix GTK WebKit2 build after r148005.
https://bugs.webkit.org/show_bug.cgi?id=114270

Reviewed by Andreas Kling.

Fix GTK build break that went through the buildbot undetected.

* UIProcess/API/gtk/WebKitFileChooserRequest.cpp:
(webkit_file_chooser_request_get_selected_files):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (148013 => 148014)


--- trunk/Source/WebKit2/ChangeLog	2013-04-09 12:11:56 UTC (rev 148013)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-09 12:13:01 UTC (rev 148014)
@@ -1,5 +1,17 @@
 2013-04-09  Michael BrĂ¼ning  <[email protected]>
 
+        Fix GTK WebKit2 build after r148005.
+        https://bugs.webkit.org/show_bug.cgi?id=114270
+
+        Reviewed by Andreas Kling.
+
+        Fix GTK build break that went through the buildbot undetected.
+
+        * UIProcess/API/gtk/WebKitFileChooserRequest.cpp:
+        (webkit_file_chooser_request_get_selected_files):
+
+2013-04-09  Michael BrĂ¼ning  <[email protected]>
+
         [Qt][WK2] Remove direct references to WebPageProxy from QQuickWebPage.
         https://bugs.webkit.org/show_bug.cgi?id=112850
 

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.cpp (148013 => 148014)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.cpp	2013-04-09 12:11:56 UTC (rev 148013)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.cpp	2013-04-09 12:13:01 UTC (rev 148014)
@@ -355,7 +355,7 @@
         WebString* webFileName = static_cast<WebString*>(selectedFileNames->at(i));
         if (webFileName->isEmpty())
             continue;
-        CString filename = fileSystemRepresentation(selectedFileNames[i]);
+        CString filename = fileSystemRepresentation(webFileName->string());
         g_ptr_array_add(request->priv->selectedFiles.get(), g_strdup(filename.data()));
     }
     g_ptr_array_add(request->priv->selectedFiles.get(), 0);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to