Changeset 60665 in webkit


Ignore:
Timestamp:
Jun 4, 2010 1:44:20 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-04 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix compilation with QT_NO_FEATURE
https://bugs.webkit.org/show_bug.cgi?id=38324

The #ifdef QT_NO_GRAPHICSEFFECT was in the wrong place, would have
made AC not work at all.

No new tests.

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::flushChanges):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r60664 r60665  
     12010-06-04  No'am Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix compilation with QT_NO_FEATURE
     6        https://bugs.webkit.org/show_bug.cgi?id=38324
     7
     8        The #ifdef QT_NO_GRAPHICSEFFECT was in the wrong place, would have
     9        made AC not work at all.
     10
     11        No new tests.
     12
     13        * platform/graphics/qt/GraphicsLayerQt.cpp:
     14        (WebCore::GraphicsLayerQtImpl::flushChanges):
     15
    1162010-06-04  Qi Zhang  <qi.2.zhang@nokia.com>
    217
  • trunk/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp

    r60532 r60665  
    671671    if (m_maskEffect)
    672672        m_maskEffect.data()->update();
    673     else if (m_changeMask & DisplayChange) {
     673    else
     674#endif
     675    if (m_changeMask & DisplayChange) {
    674676        // Recache now: all the content is ready and we don't want to wait until the paint event.
    675677        // We only need to do this for HTML content, there's no point in caching directly composited
     
    680682        m_pendingContent.regionToUpdate = QRegion();
    681683    }
    682 #endif
    683684
    684685    if ((m_changeMask & BackgroundColorChange)
Note: See TracChangeset for help on using the changeset viewer.