Changeset 188511 in webkit


Ignore:
Timestamp:
Aug 15, 2015 10:57:25 AM (9 years ago)
Author:
Wenson Hsieh
Message:

Build fix after r188510

  • platform/mac/ThemeMac.mm:

(WebCore::paintToggleButton): Pass a raw pointer to drawCellOrFocusRingWithViewIntoContext.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r188510 r188511  
     12015-08-15  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Build fix after r188510
     4
     5        * platform/mac/ThemeMac.mm:
     6        (WebCore::paintToggleButton): Pass a raw pointer to drawCellOrFocusRingWithViewIntoContext.
     7
    182015-08-15  Wenson Hsieh  <wenson_hsieh@apple.com>
    29
  • trunk/Source/WebCore/platform/mac/ThemeMac.mm

    r188510 r188511  
    442442        needsRepaint = ThemeMac::drawCellOrFocusRingWithViewIntoContext(toggleButtonCell.get(), context, inflatedRect, view, true, isCellFocused, useImageBuffer, deviceScaleFactor);
    443443#else
    444     needsRepaint = ThemeMac::drawCellOrFocusRingWithViewIntoContext(toggleButtonCell, context, inflatedRect, view, true, isCellFocused, useImageBuffer, deviceScaleFactor);
     444    needsRepaint = ThemeMac::drawCellOrFocusRingWithViewIntoContext(toggleButtonCell.get(), context, inflatedRect, view, true, isCellFocused, useImageBuffer, deviceScaleFactor);
    445445#endif
    446446
Note: See TracChangeset for help on using the changeset viewer.