Changeset 56752 in webkit


Ignore:
Timestamp:
Mar 29, 2010 5:16:17 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-29 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Multiselect - Adding method itemIsSelected() to QtAbstractWebPopup
https://bugs.webkit.org/show_bug.cgi?id=36769

Adding method itemIsSelected() to QtAbstractWebPopup.

  • platform/qt/QtAbstractWebPopup.h: (WebCore::QtAbstractWebPopup::itemIsSelected):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56750 r56752  
     12010-03-29  Luiz Agostini  <luiz.agostini@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Multiselect - Adding method itemIsSelected() to QtAbstractWebPopup
     6        https://bugs.webkit.org/show_bug.cgi?id=36769
     7
     8        Adding method itemIsSelected() to QtAbstractWebPopup.
     9
     10        * platform/qt/QtAbstractWebPopup.h:
     11        (WebCore::QtAbstractWebPopup::itemIsSelected):
     12
    1132010-03-29  Dawit Alemayehu  <adawit@kde.org>
    214
  • trunk/WebCore/platform/qt/QtAbstractWebPopup.h

    r56341 r56752  
    4141    bool itemIsEnabled(int idx) const { return m_popupClient->itemIsEnabled(idx); }
    4242    int itemCount() const { return m_popupClient->listSize(); }
     43    bool itemIsSelected(int idx) const { return m_popupClient->itemIsSelected(idx); }
     44
    4345
    4446    QWebPageClient* pageClient() const { return m_pageClient; }
Note: See TracChangeset for help on using the changeset viewer.