Skip to content

Commit

Permalink
Q_UNUSED does not require ;
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 28, 2021
1 parent 11c7e15 commit 89f0382
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/providers/hana/qgshanadataitems.cpp
Expand Up @@ -382,6 +382,6 @@ void QgsHanaRootItem::onConnectionsChanged()
QgsDataItem *QgsHanaDataItemProvider::createDataItem(
const QString &pathIn, QgsDataItem *parentItem )
{
Q_UNUSED( pathIn );
Q_UNUSED( pathIn )
return new QgsHanaRootItem( parentItem, QStringLiteral( "SAP HANA" ), QStringLiteral( "hana:" ) );
}
4 changes: 2 additions & 2 deletions src/providers/hana/qgshanasourceselect.cpp
Expand Up @@ -659,13 +659,13 @@ void QgsHanaSourceSelect::setConnectionListPosition()

void QgsHanaSourceSelect::setSearchExpression( const QString &regexp )
{
Q_UNUSED( regexp );
Q_UNUSED( regexp )
}

void QgsHanaSourceSelect::treeWidgetSelectionChanged(
const QItemSelection &selected, const QItemSelection &deselected )
{
Q_UNUSED( deselected );
Q_UNUSED( deselected )
emit enableButtons( !selected.isEmpty() );
}

Expand Down

0 comments on commit 89f0382

Please sign in to comment.