trailing semicolons removed
This commit is contained in:
parent
9ce14619e7
commit
622c6f06c2
@ -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();
|
||||
}
|
||||
|
||||
|
@ -250,7 +250,7 @@ void QskMenu::traverse( int steps )
|
||||
|
||||
QskColorFilter QskMenu::graphicFilterAt( int index ) const
|
||||
{
|
||||
Q_UNUSED( index );
|
||||
Q_UNUSED( index )
|
||||
return QskColorFilter();
|
||||
}
|
||||
|
||||
|
@ -956,7 +956,7 @@ void QskQuickItem::updateItemPolish()
|
||||
|
||||
QSGNode* QskQuickItem::updatePaintNode( QSGNode* node, UpdatePaintNodeData* data )
|
||||
{
|
||||
Q_UNUSED( data );
|
||||
Q_UNUSED( data )
|
||||
|
||||
Q_D( QskQuickItem );
|
||||
|
||||
|
@ -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 )
|
||||
|
@ -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() );
|
||||
|
Loading…
x
Reference in New Issue
Block a user