Changeset 63996 in webkit


Ignore:
Timestamp:
Jul 23, 2010 2:46:54 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-23 Patrick Gansterer <paroga@paroga.com>

Reviewed by Adam Roben.

[WINCE] Buildfix for PopupMenuWin.cpp
https://bugs.webkit.org/show_bug.cgi?id=42906

Use correct API for BitmapInfo landed in r63944.

  • platform/win/PopupMenuWin.cpp: (WebCore::PopupMenu::paint):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63994 r63996  
     12010-07-23  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        [WINCE] Buildfix for PopupMenuWin.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=42906
     7
     8        Use correct API for BitmapInfo landed in r63944.
     9
     10        * platform/win/PopupMenuWin.cpp:
     11        (WebCore::PopupMenu::paint):
     12
    1132010-07-23  fsamuel@chromium.org  <fsamuel@chromium.org>
    214
  • trunk/WebCore/platform/win/PopupMenuWin.cpp

    r55542 r63996  
    579579    if (!m_bmp) {
    580580#if OS(WINCE)
    581         BitmapInfo bitmapInfo(true, clientRect().width(), clientRect().height());
     581        BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size(), 16);
    582582#else
    583583        BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size());
Note: See TracChangeset for help on using the changeset viewer.