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
|
QskColorFilter QskListView::graphicFilterAt( int row, int col ) const
|
||||||
{
|
{
|
||||||
Q_UNUSED( row );
|
Q_UNUSED( row )
|
||||||
Q_UNUSED( col );
|
Q_UNUSED( col )
|
||||||
|
|
||||||
return QskColorFilter();
|
return QskColorFilter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -250,7 +250,7 @@ void QskMenu::traverse( int steps )
|
||||||
|
|
||||||
QskColorFilter QskMenu::graphicFilterAt( int index ) const
|
QskColorFilter QskMenu::graphicFilterAt( int index ) const
|
||||||
{
|
{
|
||||||
Q_UNUSED( index );
|
Q_UNUSED( index )
|
||||||
return QskColorFilter();
|
return QskColorFilter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -956,7 +956,7 @@ void QskQuickItem::updateItemPolish()
|
||||||
|
|
||||||
QSGNode* QskQuickItem::updatePaintNode( QSGNode* node, UpdatePaintNodeData* data )
|
QSGNode* QskQuickItem::updatePaintNode( QSGNode* node, UpdatePaintNodeData* data )
|
||||||
{
|
{
|
||||||
Q_UNUSED( data );
|
Q_UNUSED( data )
|
||||||
|
|
||||||
Q_D( QskQuickItem );
|
Q_D( QskQuickItem );
|
||||||
|
|
||||||
|
|
|
@ -482,7 +482,7 @@ void QskInputContext::invokeAction(
|
||||||
QInputMethod::Action, int cursorPosition )
|
QInputMethod::Action, int cursorPosition )
|
||||||
{
|
{
|
||||||
// called from qquicktextinput/qquicktextedit
|
// called from qquicktextinput/qquicktextedit
|
||||||
Q_UNUSED( cursorPosition );
|
Q_UNUSED( cursorPosition )
|
||||||
}
|
}
|
||||||
|
|
||||||
void QskInputContext::commitPrediction( bool )
|
void QskInputContext::commitPrediction( bool )
|
||||||
|
|
|
@ -450,7 +450,7 @@ void QskBoxRenderer::renderRectBorder(
|
||||||
const QRectF& rect, const QskBoxShapeMetrics& shape,
|
const QRectF& rect, const QskBoxShapeMetrics& shape,
|
||||||
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
|
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
|
||||||
{
|
{
|
||||||
Q_UNUSED( shape );
|
Q_UNUSED( shape )
|
||||||
|
|
||||||
const Quad out = rect;
|
const Quad out = rect;
|
||||||
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
||||||
|
@ -469,7 +469,7 @@ void QskBoxRenderer::renderRectFill(
|
||||||
const QRectF& rect, const QskBoxShapeMetrics& shape,
|
const QRectF& rect, const QskBoxShapeMetrics& shape,
|
||||||
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
|
const QskBoxBorderMetrics& border, QSGGeometry& geometry )
|
||||||
{
|
{
|
||||||
Q_UNUSED( shape );
|
Q_UNUSED( shape )
|
||||||
|
|
||||||
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
||||||
|
|
||||||
|
@ -490,7 +490,7 @@ void QskBoxRenderer::renderRect(
|
||||||
const QskBoxBorderMetrics& border, const QskBoxBorderColors& borderColors,
|
const QskBoxBorderMetrics& border, const QskBoxBorderColors& borderColors,
|
||||||
const QskGradient& gradient, QSGGeometry& geometry )
|
const QskGradient& gradient, QSGGeometry& geometry )
|
||||||
{
|
{
|
||||||
Q_UNUSED( shape );
|
Q_UNUSED( shape )
|
||||||
|
|
||||||
const Quad out = rect;
|
const Quad out = rect;
|
||||||
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
const Quad in = qskValidOrEmptyInnerRect( rect, border.widths() );
|
||||||
|
|
Loading…
Reference in New Issue