Skip to content

Commit

Permalink
Update connect statements on settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Oct 26, 2022
1 parent ee5a83f commit a1f43ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ SettingsDlg::SettingsDlg(QWidget *parent) : QDialog(parent)
_setCheckBoxValue(_waitForCbx, _utils->appFlag(FLG_DBG_WAIT_FOR));
_setCheckBoxValue(_weightsCbx, _utils->appFlag(FLG_DBG_WEIGHTS));
_setCheckBoxValue(_dtCbx, _utils->appFlag(FLG_DBG_DT));
connect(this, SIGNAL(accepted()), this, SLOT(_save()));
connect(this, &SettingsDlg::accepted, this, &SettingsDlg::_save);
}

SettingsDlg::~SettingsDlg() { delete _utils; }
Expand Down

0 comments on commit a1f43ce

Please sign in to comment.