Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Avoid compiler warnings
Change-Id: Iedc015e4be2fe80cef7a3e26c0a0747615891f7b
Reviewed-by: Joona Petrell <joona.t.petrell@nokia.com>
  • Loading branch information
Pekka Vuorela authored and Qt by Nokia committed Jan 24, 2012
1 parent 1ea7442 commit 4dcd30b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/quick/items/qquickitem.cpp
Expand Up @@ -2919,7 +2919,6 @@ void QQuickItem::updatePolish()

void QQuickItem::sendAccessibilityUpdate()
{
Q_D(QQuickItem);
}

void QQuickItemPrivate::removeItemChangeListener(QQuickItemChangeListener *listener, ChangeTypes types)
Expand Down Expand Up @@ -5654,6 +5653,7 @@ void QQuickItemLayer::setWrapMode(QQuickShaderEffectSource::WrapMode mode)

void QQuickItemLayer::itemOpacityChanged(QQuickItem *item)
{
Q_UNUSED(item)
updateOpacity();
}

Expand All @@ -5664,6 +5664,7 @@ void QQuickItemLayer::itemGeometryChanged(QQuickItem *, const QRectF &, const QR

void QQuickItemLayer::itemParentChanged(QQuickItem *item, QQuickItem *parent)
{
Q_UNUSED(item)
if (parent == m_effectSource || parent == m_effect)
return;

Expand Down

0 comments on commit 4dcd30b

Please sign in to comment.