Title: [90909] trunk/Source/WebKit2
Revision
90909
Author
[email protected]
Date
2011-07-13 06:01:44 -0700 (Wed, 13 Jul 2011)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (90908 => 90909)


--- trunk/Source/WebKit2/ChangeLog	2011-07-13 12:54:52 UTC (rev 90908)
+++ trunk/Source/WebKit2/ChangeLog	2011-07-13 13:01:44 UTC (rev 90909)
@@ -1,5 +1,18 @@
 2011-07-13  Andreas Kling  <[email protected]>
 
+        [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):
+
+2011-07-13  Andreas Kling  <[email protected]>
+
         [Qt][WK2] Undelayed WorkItems are leaked after execution.
         https://bugs.webkit.org/show_bug.cgi?id=64447
 

Modified: trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.cpp (90908 => 90909)


--- trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.cpp	2011-07-13 12:54:52 UTC (rev 90908)
+++ trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.cpp	2011-07-13 13:01:44 UTC (rev 90909)
@@ -137,7 +137,6 @@
     ASSERT(!this->page);
     ASSERT(page);
     this->page = page;
-    QObject::connect(page, SIGNAL(focusNextPrevChild(bool)), q, SLOT(focusNextPrevChildCallback(bool)));
 }
 
 void QTouchWebPagePrivate::setViewportRect(const QRectF& viewportRect)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to