Skip to content

Commit

Permalink
Fix enum comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 29, 2018
1 parent b805b60 commit bf252d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/layout/qgslayoutaligner.cpp
Expand Up @@ -102,17 +102,17 @@ void QgsLayoutAligner::distributeItems( QgsLayout *layout, const QList<QgsLayout
QRectF itemBBox = item->sceneBoundingRect();
switch ( distribution )
{
case AlignLeft:
case DistributeLeft:
return itemBBox.left();
case AlignHCenter:
case DistributeHCenter:
return itemBBox.center().x();
case AlignRight:
case DistributeRight:
return itemBBox.right();
case AlignTop:
case DistributeTop:
return itemBBox.top();
case AlignVCenter:
case DistributeVCenter:
return itemBBox.center().y();
case AlignBottom:
case DistributeBottom:
return itemBBox.bottom();
}
// no warnings
Expand Down

0 comments on commit bf252d6

Please sign in to comment.