Changeset 69232 in webkit


Ignore:
Timestamp:
Oct 6, 2010 2:08:20 PM (14 years ago)
Author:
abecsi@webkit.org
Message:

2010-10-06 Andras Becsi <abecsi@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix the build after API changes introduced in r69214.

  • UIProcess/API/cpp/qt/WKStringQt.cpp: (WKStringCreateWithQString):
  • UIProcess/API/cpp/qt/WKURLQt.cpp: (WKURLCreateWithQUrl):
Location:
trunk/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r69229 r69232  
     12010-10-06  Andras Becsi  <abecsi@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix the build after API changes introduced in r69214.
     6
     7        * UIProcess/API/cpp/qt/WKStringQt.cpp:
     8        (WKStringCreateWithQString):
     9        * UIProcess/API/cpp/qt/WKURLQt.cpp:
     10        (WKURLCreateWithQUrl):
     11
    1122010-10-06  Sheriff Bot  <webkit.review.bot@gmail.com>
    213
  • trunk/WebKit2/UIProcess/API/cpp/qt/WKStringQt.cpp

    r69214 r69232  
    3131{
    3232    WTF::String string(qString);
    33     return toCopiedRef(string);
     33    return toCopiedAPI(string);
    3434}
    3535
  • trunk/WebKit2/UIProcess/API/cpp/qt/WKURLQt.cpp

    r69214 r69232  
    3131{
    3232    WTF::String urlString(qURL.toString());
    33     return toCopiedURLRef(urlString);
     33    return toCopiedURLAPI(urlString);
    3434}
    3535
Note: See TracChangeset for help on using the changeset viewer.