Changeset 148014 in webkit


Ignore:
Timestamp:
Apr 9, 2013 5:13:01 AM (11 years ago)
Author:
michael.bruning@digia.com
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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r148011 r148014  
     12013-04-09  Michael Brüning  <michael.bruning@digia.com>
     2
     3        Fix GTK WebKit2 build after r148005.
     4        https://bugs.webkit.org/show_bug.cgi?id=114270
     5
     6        Reviewed by Andreas Kling.
     7
     8        Fix GTK build break that went through the buildbot undetected.
     9
     10        * UIProcess/API/gtk/WebKitFileChooserRequest.cpp:
     11        (webkit_file_chooser_request_get_selected_files):
     12
    1132013-04-09  Michael Brüning  <michael.bruning@digia.com>
    214
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitFileChooserRequest.cpp

    r148005 r148014  
    356356        if (webFileName->isEmpty())
    357357            continue;
    358         CString filename = fileSystemRepresentation(selectedFileNames[i]);
     358        CString filename = fileSystemRepresentation(webFileName->string());
    359359        g_ptr_array_add(request->priv->selectedFiles.get(), g_strdup(filename.data()));
    360360    }
Note: See TracChangeset for help on using the changeset viewer.