Skip to content

Commit

Permalink
Fixed warning about unused parameters in sketch/welcomeview.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
KjellMorgenstern committed Jul 19, 2022
1 parent dccff5d commit 64a8854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sketch/welcomeview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ void BlogListDelegate::paint ( QPainter * painter, const QStyleOptionViewItem &
painter->restore();
}

QSize BlogListDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
QSize BlogListDelegate::sizeHint (const QStyleOptionViewItem &, const QModelIndex &) const
{
return QSize(100, ImageSpace); // very dumb value
}
Expand Down

0 comments on commit 64a8854

Please sign in to comment.