diff options
Diffstat (limited to 'WebCore/platform/graphics/qt/GraphicsLayerQt.cpp')
-rw-r--r-- | WebCore/platform/graphics/qt/GraphicsLayerQt.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp b/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp index 49387a2..f31844a 100644 --- a/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp +++ b/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp @@ -686,7 +686,7 @@ void GraphicsLayerQtImpl::flushChanges(bool recursive, bool forceUpdateTransform // try to snatch that ownership. if (!m_layer->parent() && !parentItem()) setParentItem(0); - else if (m_layer && m_layer->parent() && m_layer->parent()->nativeLayer() != parentItem()) + else if (m_layer && m_layer->parent() && m_layer->parent()->platformLayer() != parentItem()) setParentItem(m_layer->parent()->platformLayer()); } @@ -1318,13 +1318,6 @@ void GraphicsLayerQt::syncCompositingStateForThisLayerOnly() } /* \reimp (GraphicsLayer.h) - */ -NativeLayer GraphicsLayerQt::nativeLayer() const -{ - return m_impl.get(); -} - -/* \reimp (GraphicsLayer.h) */ PlatformLayer* GraphicsLayerQt::platformLayer() const { |