Changeset 65789 in webkit


Ignore:
Timestamp:
Aug 22, 2010 5:14:00 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-22 Marc Mutz <marc.mutz@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()
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebview.cpp

    r64965 r65789  
    416416        connect(d->page, SIGNAL(linkClicked(QUrl)),
    417417                this, SIGNAL(linkClicked(QUrl)));
     418        connect(d->page, SIGNAL(selectionChanged()),
     419                this, SIGNAL(selectionChanged()));
    418420
    419421        connect(d->page, SIGNAL(microFocusChanged()),
  • trunk/WebKit/qt/ChangeLog

    r65771 r65789  
     12010-08-22  Marc Mutz  <marc.mutz@kdab.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Actually emit the QWebView::selectionChanged() signal
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=44252
     8
     9        * Api/qwebview.cpp:
     10        (QWebView::setPage): Connect QWebPage::selectionChanged() to QWebView::selectionChanged()
     11
    1122010-08-20  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
    213
Note: See TracChangeset for help on using the changeset viewer.