diff options
author | Johannes Huber <johu@gentoo.org> | 2013-12-14 21:49:44 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2013-12-14 21:49:44 +0000 |
commit | 9348343f28c689bdefed58aea6c71abc07dc27d2 (patch) | |
tree | 372da06e82d09466afffb6e36cfb73c04fb55215 /kde-base | |
parent | Remove unused patch. (diff) | |
download | gentoo-2-9348343f28c689bdefed58aea6c71abc07dc27d2.tar.gz gentoo-2-9348343f28c689bdefed58aea6c71abc07dc27d2.tar.bz2 gentoo-2-9348343f28c689bdefed58aea6c71abc07dc27d2.zip |
Remove unused patch.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/katepart/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/katepart/files/katepart-4.10.4-crash.patch | 51 |
2 files changed, 5 insertions, 52 deletions
diff --git a/kde-base/katepart/ChangeLog b/kde-base/katepart/ChangeLog index 012ee355e8a3..80c3dfe2ac91 100644 --- a/kde-base/katepart/ChangeLog +++ b/kde-base/katepart/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/katepart # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/katepart/ChangeLog,v 1.108 2013/12/12 03:36:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/katepart/ChangeLog,v 1.109 2013/12/14 21:49:44 johu Exp $ + + 14 Dec 2013; Johannes Huber <johu@gentoo.org> + -files/katepart-4.10.4-crash.patch: + Remove unused patch. 12 Dec 2013; Agostino Sarubbo <ago@gentoo.org> -katepart-4.10.5.ebuild: Remove old diff --git a/kde-base/katepart/files/katepart-4.10.4-crash.patch b/kde-base/katepart/files/katepart-4.10.4-crash.patch deleted file mode 100644 index b8c618be0c2c..000000000000 --- a/kde-base/katepart/files/katepart-4.10.4-crash.patch +++ /dev/null @@ -1,51 +0,0 @@ -From d2e34218068432ba9c312591067e53eda67cb68a Mon Sep 17 00:00:00 2001 -From: Dominik Haumann <dhaumann@kde.org> -Date: Wed, 12 Jun 2013 22:30:32 +0200 -Subject: [PATCH] fix crash in passive notification system - -@packagers / distributions: Better backport this to you 4.10.4 packages. - -FIXED-IN: 4.10.5 -BUG: 320302 ---- - part/view/katemessagewidget.cpp | 21 +++++++++++++++++++-- - 1 file changed, 19 insertions(+), 2 deletions(-) - -diff --git a/part/view/katemessagewidget.cpp b/part/view/katemessagewidget.cpp -index d3c895f..6c227c0 100644 ---- a/part/view/katemessagewidget.cpp -+++ b/part/view/katemessagewidget.cpp -@@ -225,11 +225,28 @@ void KateMessageWidget::startAutoHideTimer() - return; - } - -+ // switching KateViews may result isVisible() == true and still m_messageList.size() == 0. -+ // The problem is that the hideEvent is never called for the KMessageWidget, if the -+ // parent widget is hidden. In that case, we 'miss' that the notification is gone... -+ if (m_messageList.size() == 0) { -+ m_hideAnimationRunning = false; -+ m_autoHideTimerRunning = false; -+ m_autoHideTime = -1; -+ -+ if (isVisible()) { -+ m_hideAnimationRunning = true; -+ if (m_fadeEffect) { -+ m_fadeEffect->fadeOut(); -+ } else { -+ m_messageWidget->animatedHide(); -+ } -+ } -+ return; -+ } -+ - // remember that auto hide timer is running - m_autoHideTimerRunning = true; - -- // the message must still still be valid -- Q_ASSERT(m_messageList.size()); - KTextEditor::Message* message = m_messageList[0]; - QTimer::singleShot(m_autoHideTime == 0 ? (6*1000) : m_autoHideTime, message, SLOT(deleteLater())); - } --- -1.8.2.1 - |