trailing semicolons removed

This commit is contained in:
Uwe Rathmann 2021-12-27 10:21:03 +01:00
parent 9ce14619e7
commit 622c6f06c2
5 changed files with 9 additions and 8 deletions

View File

@ -142,8 +142,9 @@ QskListView::SelectionMode QskListView::selectionMode() const
QskColorFilter QskListView::graphicFilterAt( int row, int col ) const
{
Q_UNUSED( row );
Q_UNUSED( col );
Q_UNUSED( row )
Q_UNUSED( col )
return QskColorFilter();
}

View File

@ -250,7 +250,7 @@ void QskMenu::traverse( int steps )
QskColorFilter QskMenu::graphicFilterAt( int index ) const
{
Q_UNUSED( index );
Q_UNUSED( index )
return QskColorFilter();
}

View File

@ -956,7 +956,7 @@ void QskQuickItem::updateItemPolish()
QSGNode* QskQuickItem::updatePaintNode( QSGNode* node, UpdatePaintNodeData* data )
{
Q_UNUSED( data );
Q_UNUSED( data )
Q_D( QskQuickItem );

View File

@ -482,7 +482,7 @@ void QskInputContext::invokeAction(
QInputMethod::Action, int cursorPosition )
{
// called from qquicktextinput/qquicktextedit
Q_UNUSED( cursorPosition );
Q_UNUSED( cursorPosition )
}
void QskInputContext::commitPrediction( bool )

View File

@ -450,7 +450,7 @@ void QskBoxRenderer::renderRectBorder(
const QRectF& rect, const QskBoxShapeMetrics& shape,
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
{
Q_UNUSED( shape );
Q_UNUSED( shape )
const Quad out = rect;
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
@ -469,7 +469,7 @@ void QskBoxRenderer::renderRectFill(
const QRectF& rect, const QskBoxShapeMetrics& shape,
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
{
Q_UNUSED( shape );
Q_UNUSED( shape )
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
@ -490,7 +490,7 @@ void QskBoxRenderer::renderRect(
const QskBoxBorderMetrics& border, const QskBoxBorderColors& borderColors,
const QskGradient& gradient, QSGGeometry& geometry )
{
Q_UNUSED( shape );
Q_UNUSED( shape )
const Quad out = rect;
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );