Changeset 53999 in webkit


Ignore:
Timestamp:
Jan 28, 2010 5:39:14 AM (10 years ago)
Author:
kenneth@webkit.org
Message:

Do not set the combobox font on Maemo5 and S60; use the
default instead.

Reviewed by Simon Hausmann.

  • WebCoreSupport/QtFallbackWebPopup.cpp:

(WebCore::QtFallbackWebPopup::populate):

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r53997 r53999  
     12010-01-28  Kenneth Rohde Christiansen  <kenneth@webkit.org>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Do not set the combobox font on Maemo5 and S60; use the
     6        default instead.
     7
     8        * WebCoreSupport/QtFallbackWebPopup.cpp:
     9        (WebCore::QtFallbackWebPopup::populate):
     10
    1112010-01-28  Trond Kjernåsen <trond@trolltech.com>
    212
  • trunk/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp

    r53851 r53999  
    135135    Q_ASSERT(model);
    136136
     137#if !defined(Q_WS_S60) && !defined(Q_WS_MAEMO_5)
    137138    m_combo->setFont(font());
     139#endif
    138140    for (int i = 0; i < itemCount(); ++i) {
    139141        switch (itemType(i)) {
Note: See TracChangeset for help on using the changeset viewer.