Skip to content

Commit

Permalink
bug fixing (linux)
Browse files Browse the repository at this point in the history
  • Loading branch information
aat301 committed Nov 17, 2016
1 parent ffcbe8f commit 881f7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dialogs/helpdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ HelpDialog::HelpDialog(const QString& path, const QString& page, QWidget* parent
checkBox->setCheckState(Qt::Checked);

QPushButton* closeButton = new QPushButton(tr("Close"));
connect(closeButton, QPushButton::clicked, this, &HelpDialog::reject);
connect(closeButton, &QPushButton::clicked, this, &HelpDialog::reject);

QHBoxLayout *buttonLayout = new QHBoxLayout;
buttonLayout->addWidget(checkBox);
Expand Down

0 comments on commit 881f7b6

Please sign in to comment.