summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/gui/changelog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/gui/changelog.cpp')
-rw-r--r--utils/rbutilqt/gui/changelog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rbutilqt/gui/changelog.cpp b/utils/rbutilqt/gui/changelog.cpp
index 6495c0ebd9..f256f3805c 100644
--- a/utils/rbutilqt/gui/changelog.cpp
+++ b/utils/rbutilqt/gui/changelog.cpp
@@ -28,7 +28,7 @@ Changelog::Changelog(QWidget *parent) : QDialog(parent)
28 ui.browserChangelog->setHtml(parseChangelogFile(":/docs/changelog.txt")); 28 ui.browserChangelog->setHtml(parseChangelogFile(":/docs/changelog.txt"));
29 ui.browserChangelog->moveCursor(QTextCursor::End, QTextCursor::MoveAnchor); 29 ui.browserChangelog->moveCursor(QTextCursor::End, QTextCursor::MoveAnchor);
30 ui.checkBoxShowAlways->setChecked(RbSettings::value(RbSettings::ShowChangelog).toBool()); 30 ui.checkBoxShowAlways->setChecked(RbSettings::value(RbSettings::ShowChangelog).toBool());
31 connect(ui.buttonOk, SIGNAL(clicked()), this, SLOT(accept())); 31 connect(ui.buttonOk, &QAbstractButton::clicked, this, &Changelog::accept);
32} 32}
33 33
34 34