Skip to content

Commit

Permalink
Fix clazy autoconnect slot name warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 2, 2018
1 parent 5ed624b commit 1f95864
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gui/qgssearchquerybuilder.cpp
Expand Up @@ -254,7 +254,7 @@ long QgsSearchQueryBuilder::countRecords( const QString &searchString )
}


void QgsSearchQueryBuilder::on_btnOk_clicked()
void QgsSearchQueryBuilder::btnOk_clicked()
{
// if user hits OK and there is no query, skip the validation
if ( txtSQL->text().trimmed().length() > 0 )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssearchquerybuilder.h
Expand Up @@ -56,7 +56,7 @@ class GUI_EXPORT QgsSearchQueryBuilder : public QDialog, private Ui::QgsQueryBui

private slots:
void btnEqual_clicked();
void on_btnOk_clicked();
void btnOk_clicked();
void btnLessThan_clicked();
void btnGreaterThan_clicked();
void btnLike_clicked();
Expand Down
2 changes: 1 addition & 1 deletion src/providers/db2/qgsdb2newconnection.cpp
Expand Up @@ -129,7 +129,7 @@ void QgsDb2NewConnection::btnConnect_clicked()
testConnection();
}

void QgsDb2NewConnection::on_btnListDatabase_clicked()
void QgsDb2NewConnection::btnListDatabase_clicked()
{
listDatabases();
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/db2/qgsdb2newconnection.h
Expand Up @@ -42,7 +42,7 @@ class QgsDb2NewConnection : public QDialog, private Ui::QgsDb2NewConnectionBase
void listDatabases();
public slots:
void accept() override;
void on_btnListDatabase_clicked();
void btnListDatabase_clicked();
void btnConnect_clicked();
void on_cb_trustedConnection_clicked();
private:
Expand Down

0 comments on commit 1f95864

Please sign in to comment.