Changeset 96101 in webkit


Ignore:
Timestamp:
Sep 27, 2011 5:58:02 AM (13 years ago)
Author:
alexis.menard@openbossa.org
Message:

[Qt][WK2] API fixes for QML, the signal parameters needs to be named.
https://bugs.webkit.org/show_bug.cgi?id=68889

Reviewed by Andreas Kling.

Signal parameters needs to be explicitly named in QML to be accessible.
This patch fix this problem.

  • UIProcess/API/qt/qdesktopwebview.h:
  • UIProcess/API/qt/qtouchwebpage.h:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r96079 r96101  
     12011-09-27  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        [Qt][WK2] API fixes for QML, the signal parameters needs to be named.
     4        https://bugs.webkit.org/show_bug.cgi?id=68889
     5
     6        Reviewed by Andreas Kling.
     7
     8        Signal parameters needs to be explicitly named in QML to be accessible.
     9        This patch fix this problem.
     10
     11        * UIProcess/API/qt/qdesktopwebview.h:
     12        * UIProcess/API/qt/qtouchwebpage.h:
     13
    1142011-09-27  Alexis Menard  <alexis.menard@openbossa.org>
    215
  • trunk/Source/WebKit2/UIProcess/API/qt/qdesktopwebview.h

    r96079 r96101  
    8282
    8383Q_SIGNALS:
    84     void titleChanged(const QString&);
    85     void statusBarMessageChanged(const QString&);
     84    void titleChanged(const QString& title);
     85    void statusBarMessageChanged(const QString& message);
    8686    void loadStarted();
    8787    void loadSucceeded();
    8888    void loadFailed(QDesktopWebView::ErrorType errorType, int errorCode, const QUrl& url);
    8989    void loadProgressChanged(int progress);
    90     void urlChanged(const QUrl&);
     90    void urlChanged(const QUrl& url);
    9191
    9292protected:
  • trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.h

    r96079 r96101  
    6666
    6767Q_SIGNALS:
    68     void urlChanged(const QUrl&);
    69     void titleChanged(const QString&);
     68    void urlChanged(const QUrl& url);
     69    void titleChanged(const QString& title);
    7070    void loadStarted();
    7171    void loadSucceeded();
Note: See TracChangeset for help on using the changeset viewer.