Skip to content

Commit

Permalink
Fix armv7hl build
Browse files Browse the repository at this point in the history
  • Loading branch information
volter committed Oct 26, 2015
1 parent ad45f32 commit 87e6f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgswelcomepageitemsmodel.cpp
Expand Up @@ -114,7 +114,7 @@ QSize QgsWelcomePageItemDelegate::sizeHint( const QStyleOptionViewItem & option,
index.data( QgsWelcomePageItemsModel::CrsRole ).toString() ) );
doc.setTextWidth( width - ( !icon.isNull() ? icon.width() + 35 : 35 ) );

return QSize( width, qMax( doc.size().height() + 10, ( double )icon.height() ) + 20 );
return QSize( width, qMax( ( double ) doc.size().height() + 10, ( double )icon.height() ) + 20 );
}

QgsWelcomePageItemsModel::QgsWelcomePageItemsModel( QObject* parent )
Expand Down

0 comments on commit 87e6f34

Please sign in to comment.