Changeset 90909 in webkit


Ignore:
Timestamp:
Jul 13, 2011 6:01:44 AM (13 years ago)
Author:
andreas.kling@nokia.com
Message:

[Qt][WK2] Remove invalid signal/slot connection in QTouchWebView.
https://bugs.webkit.org/show_bug.cgi?id=64450

Reviewed by Benjamin Poulain.

The focusNextPrevChild() signal was removed, so we shouldn't try to
connect to it.

  • UIProcess/API/qt/qtouchwebpage.cpp:

(QTouchWebPagePrivate::setPage):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r90907 r90909  
     12011-07-13  Andreas Kling  <kling@webkit.org>
     2
     3        [Qt][WK2] Remove invalid signal/slot connection in QTouchWebView.
     4        https://bugs.webkit.org/show_bug.cgi?id=64450
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        The focusNextPrevChild() signal was removed, so we shouldn't try to
     9        connect to it.
     10
     11        * UIProcess/API/qt/qtouchwebpage.cpp:
     12        (QTouchWebPagePrivate::setPage):
     13
    1142011-07-13  Andreas Kling  <kling@webkit.org>
    215
  • trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.cpp

    r90899 r90909  
    138138    ASSERT(page);
    139139    this->page = page;
    140     QObject::connect(page, SIGNAL(focusNextPrevChild(bool)), q, SLOT(focusNextPrevChildCallback(bool)));
    141140}
    142141
Note: See TracChangeset for help on using the changeset viewer.