Skip to content

Commit 87e6f34

Browse files
committed
Fix armv7hl build
1 parent ad45f32 commit 87e6f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgswelcomepageitemsmodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ QSize QgsWelcomePageItemDelegate::sizeHint( const QStyleOptionViewItem & option,
114114
index.data( QgsWelcomePageItemsModel::CrsRole ).toString() ) );
115115
doc.setTextWidth( width - ( !icon.isNull() ? icon.width() + 35 : 35 ) );
116116

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

120120
QgsWelcomePageItemsModel::QgsWelcomePageItemsModel( QObject* parent )

0 commit comments

Comments
 (0)