summaryrefslogtreecommitdiffstats
path: root/kde/kdelibs
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-07-31 13:49:27 +0200
committertnut <tnut at nutyx dot com>2011-07-31 13:49:27 +0200
commitd2634752714906ef6697ff15577d7d68eecc0359 (patch)
tree0bfab31013da2b902e6325333b2980cb12404b1a /kde/kdelibs
parent042a1f2872cc0a596e20123f4e85450ff1ed7d81 (diff)
downloadnutyx-pakxe-d2634752714906ef6697ff15577d7d68eecc0359.tar.gz
nutyx-pakxe-d2634752714906ef6697ff15577d7d68eecc0359.tar.bz2
nutyx-pakxe-d2634752714906ef6697ff15577d7d68eecc0359.tar.xz
nutyx-pakxe-d2634752714906ef6697ff15577d7d68eecc0359.zip
kdelibs, suppression fichier obsolète
Diffstat (limited to 'kde/kdelibs')
-rw-r--r--kde/kdelibs/kdelibs-4.6.0-fix-crash-in-plasma.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/kde/kdelibs/kdelibs-4.6.0-fix-crash-in-plasma.patch b/kde/kdelibs/kdelibs-4.6.0-fix-crash-in-plasma.patch
deleted file mode 100644
index 5fd8d0a5c..000000000
--- a/kde/kdelibs/kdelibs-4.6.0-fix-crash-in-plasma.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit 709f75ac353cd735ccac31f87363ea90dde345d3
-Author: Marco Martin <notmart@gmail.com>
-Date: Tue Feb 1 21:15:49 2011 +0100
-
- don't collapse when it's destroying
- try to not crash upon deletion of the extender
-
-diff --git a/plasma/extenders/extenderitem.cpp b/plasma/extenders/extenderitem.cpp
-index bdbc886..3e5809f 100644
---- a/plasma/extenders/extenderitem.cpp
-+++ b/plasma/extenders/extenderitem.cpp
-@@ -596,6 +596,10 @@ void ExtenderItem::destroy()
-
- void ExtenderItem::setCollapsed(bool collapsed)
- {
-+ if (extender()->d->destroying) {
-+ return;
-+ }
-+
- config().writeEntry("isCollapsed", collapsed);
- d->collapsed = collapsed;
- d->collapseIcon->setToolTip(collapsed ? i18n("Expand this widget") : i18n("Collapse this widget"));