This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2godesktopsharing. commit 2aa9bc9b9d46911ffabfa3b81ef67d03d85f3ec0 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Nov 12 15:31:40 2018 +0100 accessdialog.cpp: fix connect () calls. --- accessdialog.cpp | 4 ++-- debian/changelog | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/accessdialog.cpp b/accessdialog.cpp index 723decb..fc2e156 100644 --- a/accessdialog.cpp +++ b/accessdialog.cpp @@ -42,10 +42,10 @@ AccessWindow::AccessWindow(QString uname, QString hname, QWidget *parent) /* dialog buttons */ QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Grant access")); - connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); + connect(buttonBox, SIGNAL(accepted), this, SLOT(accept)); buttonBox->button(QDialogButtonBox::Cancel)->setText(tr("Deny access")); buttonBox->button(QDialogButtonBox::Cancel)->setDefault(true); - connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject); + connect(buttonBox, SIGNAL(rejected), this, SLOT(reject)); hbox->addWidget(buttonBox, 1, Qt::AlignRight | Qt::AlignBottom); /* modality */ diff --git a/debian/changelog b/debian/changelog index 9e55a6d..896e316 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ x2godesktopsharing (3.1.1.5-0x2go1) UNRELEASED; urgency=medium [ Mihai Moldovan ] * New upstream version (3.1.1.5): + - accessdialog.cpp: fix connect () calls. * x2godesktopsharing.spec: + Pull in redhat-rpm-config manually. This should probably be done by something else, like... gcc or qmake or qt(4)-dev, but it isn't. -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2godesktopsharing.git