diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2011-06-14 09:23:49 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2011-06-14 09:23:49 +0000 |
commit | 3f88d44ab79dbfa206490f1310fa6d12fa005e72 (patch) | |
tree | 13cc4df89088675d0ba07a254fe5338146fdd460 /x11/kdelibs4/files/patch-git-92db24ad | |
parent | - Update to 0.7.5. (diff) |
The FreeBSD KDE Team is pleased to announce KDE SC 4.6.4. Read full
announcement here: http://kde.org/announcements/announce-4.6.4.php
Notes
Notes:
svn path=/head/; revision=275542
Diffstat (limited to 'x11/kdelibs4/files/patch-git-92db24ad')
-rw-r--r-- | x11/kdelibs4/files/patch-git-92db24ad | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/x11/kdelibs4/files/patch-git-92db24ad b/x11/kdelibs4/files/patch-git-92db24ad deleted file mode 100644 index 4c4af2f692f4..000000000000 --- a/x11/kdelibs4/files/patch-git-92db24ad +++ /dev/null @@ -1,27 +0,0 @@ -commit 92db24adfa941003db1d885df01157056617f30b -Author: Maks Orlovich <maksim@kde.org> -Date: Sun May 8 14:39:03 2011 -0400 - - Fix the job-on-hold reuse logic, which caused the double-POST problem) - - adawit, could you please at least READ what you're backporting if you are - going to be this aggressive? Or better yet, please don't backport anything - that's not fixing a critical bug or is trivial, as per: - http://techbase.kde.org/Policies/Minor_Point_Release_Policy - - CCMAIL: adawit@kde.org - BUG: 272466 - -diff --git kio/kio/scheduler.cpp kio/kio/scheduler.cpp -index 55da053..9f5607e 100644 ---- kio/kio/scheduler.cpp -+++ kio/kio/scheduler.cpp -@@ -1151,7 +1151,7 @@ Slave *SchedulerPrivate::heldSlaveForJob(SimpleJob *job) - bool canJobReuse = (cmd == CMD_GET || cmd == CMD_MULTI_GET); - - if (KIO::TransferJob *tJob = qobject_cast<KIO::TransferJob *>(job)) { -- canJobReuse = cmd == (canJobReuse || cmd == CMD_SPECIAL); -+ canJobReuse = (canJobReuse || cmd == CMD_SPECIAL); - if (canJobReuse) { - KIO::MetaData outgoing = tJob->outgoingMetaData(); - const QString resume = outgoing.value("resume"); |