Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix clazy overridden signal warning
Results in no warning when closing missing layers dialog
  • Loading branch information
nyalldawson committed Feb 2, 2018
1 parent 6e7a995 commit bb408c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/qgshandlebadlayers.cpp
Expand Up @@ -392,7 +392,7 @@ void QgsHandleBadLayers::accept()
QDialog::accept();
}

void QgsHandleBadLayers::rejected()
void QgsHandleBadLayers::reject()
{

if ( mLayerList->rowCount() > 0 &&
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgshandlebadlayers.h
Expand Up @@ -55,7 +55,7 @@ class APP_EXPORT QgsHandleBadLayers
void editAuthCfg();
void apply();
void accept() override;
void rejected();
void reject() override;

private:
QPushButton *mBrowseButton = nullptr;
Expand Down

0 comments on commit bb408c8

Please sign in to comment.