summaryrefslogtreecommitdiff
path: root/media-gfx/digikam/files
diff options
context:
space:
mode:
authorAndreas K. Huettel (dilfridge) <dilfridge@gentoo.org>2015-05-20 00:51:29 +0200
committerAndreas K. Huettel (dilfridge) <dilfridge@gentoo.org>2015-05-20 00:51:29 +0200
commitceb4c45aebd0a398eadd0388ffa824bfecc75adb (patch)
tree0a707c1a32e6369ab109d7f2ef7256d446945ba1 /media-gfx/digikam/files
parenteca3f10256470efbcf742c0e3afd024409ccb0bf (diff)
downloadkde-ceb4c45aebd0a398eadd0388ffa824bfecc75adb.tar.gz
kde-ceb4c45aebd0a398eadd0388ffa824bfecc75adb.tar.bz2
kde-ceb4c45aebd0a398eadd0388ffa824bfecc75adb.zip
[digikam] 4.10.0 in the main tree, delete 4.9.0 here
Diffstat (limited to 'media-gfx/digikam/files')
-rw-r--r--media-gfx/digikam/files/digikam-4.9.0-fix-hang.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/media-gfx/digikam/files/digikam-4.9.0-fix-hang.patch b/media-gfx/digikam/files/digikam-4.9.0-fix-hang.patch
deleted file mode 100644
index 4885a743f73..00000000000
--- a/media-gfx/digikam/files/digikam-4.9.0-fix-hang.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-commit 685e0764bb3b771afbc465e246307e278a12e18d
-Author: Maik Qualmann <metzpinguin@gmail.com>
-Date: Tue Apr 7 21:24:05 2015 +0200
-
- apply patch #91925 from Kristian Karl to corrects the signal connection in the ProgressManager
- BUGS: 345954
- FIXED-IN: 4.10.0
-
-diff --git a/libs/progressmanager/progressmanager.cpp b/libs/progressmanager/progressmanager.cpp
-index 840362c..74a806e 100644
---- a/libs/progressmanager/progressmanager.cpp
-+++ b/libs/progressmanager/progressmanager.cpp
-@@ -483,7 +483,7 @@ void ProgressManager::addProgressItemImpl(ProgressItem* const t, ProgressItem* c
- connect(t, SIGNAL(progressItemCompleted(ProgressItem*)),
- this, SLOT(slotTransactionCompleted(ProgressItem*)), Qt::DirectConnection);
-
-- connect(this, SIGNAL(completeTransactionDeferred(ProgressItem*)),
-+ connect(t, SIGNAL(completeTransactionDeferred(ProgressItem*)),
- this, SLOT(slotTransactionCompletedDeferred(ProgressItem*)));
-
- connect(t, SIGNAL(progressItemProgress(ProgressItem*,uint)),