From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8CBA81384B4 for ; Thu, 12 Nov 2015 14:13:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 883B921C00B; Thu, 12 Nov 2015 14:13:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E85B21C00B for ; Thu, 12 Nov 2015 14:13:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C972D3407E6 for ; Thu, 12 Nov 2015 14:13:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CA911E4 for ; Thu, 12 Nov 2015 14:12:57 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1447337560.ed300759ae07792b610d1279404a404b041ef56b.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch X-VCS-Directories: kde-plasma/plasma-workspace/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: ed300759ae07792b610d1279404a404b041ef56b X-VCS-Branch: master Date: Thu, 12 Nov 2015 14:12:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a48f72eb-bb4a-4ca3-9474-9fb31c714d50 X-Archives-Hash: 9681a267fa557b516f29d1948db5f856 commit: ed300759ae07792b610d1279404a404b041ef56b Author: Michael Palimaka gentoo org> AuthorDate: Thu Nov 12 14:12:17 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Nov 12 14:12:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed300759 kde-plasma/plasma-workspace: add missing patch Package-Manager: portage-2.2.24 .../files/plasma-workspace-5.4.3-fix-drkonqi.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch new file mode 100644 index 0000000..9aa89ca --- /dev/null +++ b/kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch @@ -0,0 +1,32 @@ +From: David Edmundson +Date: Wed, 21 Oct 2015 16:42:01 +0000 +Subject: Don't connect to signals which don't exist +X-Git-Url: http://quickgit.kde.org/?p=plasma-workspace.git&a=commitdiff&h=2441d350ef571329b67848f79668f3956534806e +--- +Don't connect to signals which don't exist + +Fix KDialog porting +--- + + +--- a/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp ++++ b/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp +@@ -574,7 +574,7 @@ + QIcon::fromTheme("view-refresh"), + i18nc("@info:tooltip", "Use this button to retry " + "loading the bug report."))); +- connect(ui.m_retryButton, SIGNAL(clicked()), this, SLOT(reloadReport())); ++ connect(ui.m_retryButton, &QPushButton::clicked, this, &BugzillaReportInformationDialog::reloadReport); + + m_suggestButton = new QPushButton(this); + ui.buttonBox->addButton(m_suggestButton, QDialogButtonBox::ActionRole); +@@ -583,7 +583,7 @@ + QIcon::fromTheme("list-add"), i18nc("@info:tooltip", "Use this button to suggest that " + "the crash you experienced is related to this bug " + "report"))); +- connect(this, SIGNAL(user1Clicked()) , this, SLOT(relatedReportClicked())); ++ connect(m_suggestButton, &QPushButton::clicked, this, &BugzillaReportInformationDialog::relatedReportClicked); + + connect(ui.m_showOwnBacktraceCheckBox, SIGNAL(toggled(bool)), this, SLOT(toggleShowOwnBacktrace(bool))); + +