[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:24:57 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 456fda92d5644dc39932cd52fcb58df158eb8f1a
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 23 00:14:00 2010 +0000

    2010-08-22  Marc Mutz  <marc.mutz at kdab.com>
    
            Reviewed by Antonio Gomes.
    
            [Qt] Actually emit the QWebView::selectionChanged() signal
    
            https://bugs.webkit.org/show_bug.cgi?id=44252
    
            * Api/qwebview.cpp:
            (QWebView::setPage): Connect QWebPage::selectionChanged() to QWebView::selectionChanged()
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65789 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/Api/qwebview.cpp b/WebKit/qt/Api/qwebview.cpp
index 5e7265f..10cf60c 100644
--- a/WebKit/qt/Api/qwebview.cpp
+++ b/WebKit/qt/Api/qwebview.cpp
@@ -415,6 +415,8 @@ void QWebView::setPage(QWebPage* page)
                 this, SIGNAL(statusBarMessage(QString)));
         connect(d->page, SIGNAL(linkClicked(QUrl)),
                 this, SIGNAL(linkClicked(QUrl)));
+        connect(d->page, SIGNAL(selectionChanged()),
+                this, SIGNAL(selectionChanged()));
 
         connect(d->page, SIGNAL(microFocusChanged()),
                 this, SLOT(updateMicroFocus()));
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 871d7ab..36429ea 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-22  Marc Mutz  <marc.mutz at kdab.com>
+
+        Reviewed by Antonio Gomes.
+
+        [Qt] Actually emit the QWebView::selectionChanged() signal
+
+        https://bugs.webkit.org/show_bug.cgi?id=44252
+
+        * Api/qwebview.cpp:
+        (QWebView::setPage): Connect QWebPage::selectionChanged() to QWebView::selectionChanged()
+
 2010-08-20  Ademar de Souza Reis Jr  <ademar.reis at openbossa.org>
 
         Reviewed by Ariya Hidayat.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list