Changeset 48354 in webkit


Ignore:
Timestamp:
Sep 14, 2009 7:46:26 AM (15 years ago)
Author:
yael.aharon@nokia.com
Message:

[Qt] Assert hit when dropping a file in QtLauncher
https://bugs.webkit.org/show_bug.cgi?id=29242

Patch by Yael Aharon <yael.aharon@nokia.com> on 2009-09-14
Reviewed by Tor Arne Vestbø.

Qt's implementation of DropData::asURL does not return a URL encoded string
as expected.

  • platform/qt/DragDataQt.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r48352 r48354  
     12009-09-14  Yael Aharon  <yael.aharon@nokia.com>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        [Qt] Assert hit when dropping a file in QtLauncher
     6        https://bugs.webkit.org/show_bug.cgi?id=29242
     7
     8        Qt's implementation of DropData::asURL does not return a URL encoded string
     9        as expected.
     10
     11        * platform/qt/DragDataQt.cpp:
     12        (WebCore::DragData::asURL):
     13
    1142009-09-13  Kevin Ollivier  <kevino@theolliviers.com>
    215
  • trunk/WebCore/platform/qt/DragDataQt.cpp

    r46170 r48354  
    129129        return String();
    130130
    131     return urls.first().toString();
     131    return encodeWithURLEscapeSequences(urls.first().toString());
    132132}
    133133
Note: See TracChangeset for help on using the changeset viewer.