⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 118629 in webkit


Ignore:
Timestamp:
May 27, 2012, 12:48:36 PM (14 years ago)
Author:
Simon Hausmann
Message:

[Qt] Trivial unreviewed build fix with newer Qt

  • Api/qwebpage.cpp:

(QWebPage::javaScriptPrompt): Don't use deprecated QString/QChar functions.

Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/Api/qwebpage.cpp

    r118354 r118629  
    21442144    // (Accelerator mnemonics)
    21452145    QString escMsg(msg);
    2146     escMsg.replace(QChar::fromAscii('&'), QString::fromAscii("&&"));
     2146    escMsg.replace(QChar::fromLatin1('&'), QLatin1String("&&"));
    21472147    dlg.setLabelText(escMsg);
    21482148
  • trunk/Source/WebKit/qt/ChangeLog

    r118570 r118629  
     12012-05-27  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        [Qt] Trivial unreviewed build fix with newer Qt
     4
     5        * Api/qwebpage.cpp:
     6        (QWebPage::javaScriptPrompt): Don't use deprecated QString/QChar functions.
     7
    182012-05-24  Ryosuke Niwa  <rniwa@webkit.org>
    29
Note: See TracChangeset for help on using the changeset viewer.