Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2401 from volter/master
Fix armv7hl build
  • Loading branch information
jef-n committed Oct 26, 2015
2 parents 7997c02 + 87e6f34 commit 37d9d23
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 37d9d23

Please sign in to comment.