summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-11-13 01:12:17 +1100
committerMichael Palimaka <kensington@gentoo.org>2015-11-13 01:12:40 +1100
commited300759ae07792b610d1279404a404b041ef56b (patch)
treebbf01780c4298024dd328b79771e0b66b132b3d9 /kde-plasma
parentsci-mathematics/coq: remove old (diff)
downloadgentoo-ed300759ae07792b610d1279404a404b041ef56b.tar.gz
gentoo-ed300759ae07792b610d1279404a404b041ef56b.tar.bz2
gentoo-ed300759ae07792b610d1279404a404b041ef56b.zip
kde-plasma/plasma-workspace: add missing patch
Package-Manager: portage-2.2.24
Diffstat (limited to 'kde-plasma')
-rw-r--r--kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch32
1 files changed, 32 insertions, 0 deletions
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 000000000000..9aa89ca914d7
--- /dev/null
+++ b/kde-plasma/plasma-workspace/files/plasma-workspace-5.4.3-fix-drkonqi.patch
@@ -0,0 +1,32 @@
+From: David Edmundson <kde@davidedmundson.co.uk>
+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)));
+
+