summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Hüttel <dilfridge@gentoo.org>2013-03-25 22:26:18 +0000
committerAndreas Hüttel <dilfridge@gentoo.org>2013-03-25 22:26:18 +0000
commitc25837c35c821ddc7e9971164fb3e3dd86550c08 (patch)
tree1110956d1ef24a503bd5b2f3d700182d24fba698 /kde-base/drkonqi/files
parentDisable the widget lock option in the systemsettings gui, as it poses a secur... (diff)
downloadhistorical-c25837c35c821ddc7e9971164fb3e3dd86550c08.tar.gz
historical-c25837c35c821ddc7e9971164fb3e3dd86550c08.tar.bz2
historical-c25837c35c821ddc7e9971164fb3e3dd86550c08.zip
Backport patch for hang when amending bug report, bug 463168
Package-Manager: portage-2.2.0_alpha169/cvs/Linux x86_64 Manifest-Sign-Key: 0xEBE6A336BE19039C!
Diffstat (limited to 'kde-base/drkonqi/files')
-rw-r--r--kde-base/drkonqi/files/drkonqi-4.10.1-signal.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/kde-base/drkonqi/files/drkonqi-4.10.1-signal.patch b/kde-base/drkonqi/files/drkonqi-4.10.1-signal.patch
new file mode 100644
index 000000000000..901f3834d3db
--- /dev/null
+++ b/kde-base/drkonqi/files/drkonqi-4.10.1-signal.patch
@@ -0,0 +1,31 @@
+From b5a8845c515fa6f6b40d58748f05b626d2356f17 Mon Sep 17 00:00:00 2001
+From: Jekyll Wu <adaptee@gmail.com>
+Date: Mon, 25 Mar 2013 11:53:35 +0800
+Subject: [PATCH] Connect to the new signal, instead of the non-existent one
+
+I made a stupid mistake in the final revised patch for review 108411,
+which makes drkonqi never realize the attachment has been successfully
+uploaded to the bugzilla.
+
+BUG: 316958
+FIXED-IN: 4.10.2
+---
+ drkonqi/reportinterface.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drkonqi/reportinterface.cpp b/drkonqi/reportinterface.cpp
+index f911b77..b29652c 100644
+--- a/drkonqi/reportinterface.cpp
++++ b/drkonqi/reportinterface.cpp
+@@ -345,7 +345,7 @@ void ReportInterface::sendUsingDefaultProduct() const
+ void ReportInterface::addedToCC()
+ {
+ //The user was added to the CC list, proceed with the attachment
+- connect(m_bugzillaManager, SIGNAL(attachToReportSent(int,int)), this, SLOT(attachSent(int,int)));
++ connect(m_bugzillaManager, SIGNAL(attachToReportSent(int)), this, SLOT(attachSent(int)));
+ connect(m_bugzillaManager, SIGNAL(attachToReportError(QString,QString)),
+ this, SIGNAL(sendReportError(QString,QString)));
+ BugReport report = newBugReportTemplate();
+--
+1.8.1.5
+