summaryrefslogtreecommitdiff
path: root/deskutils/kmail/files/patch-git_97e165
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2019-07-12 05:32:09 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2019-07-12 05:32:09 +0000
commit37e8575738b25685fe965eefde3d99665f8e2771 (patch)
treee48a451b3e5140976713413abc6a3769b076c6eb /deskutils/kmail/files/patch-git_97e165
parentnet/waypipe: rename DMABUF to OPENGL for consistency (diff)
KDE Applications: update to 19.04.3
July 11, 2019. Today KDE released the third stability update for KDE Applications 19.04. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone. Over sixty recorded bugfixes include improvements to Kontact, Ark, Cantor, JuK, K3b, Kdenlive, KTouch, Okular, Umbrello, among others. Improvements include: * Konqueror and Kontact no longer crash on exit with QtWebEngine 5.13 * Cutting groups with compositions no longer crashes the Kdenlive video editor * The Python importer in Umbrello UML designer now handles parameters with default arguments Changelog: https://kde.org/announcements/fulllog_applications-aether.php?version=19.04.3
Notes
Notes: svn path=/head/; revision=506435
Diffstat (limited to 'deskutils/kmail/files/patch-git_97e165')
-rw-r--r--deskutils/kmail/files/patch-git_97e16575
1 files changed, 0 insertions, 75 deletions
diff --git a/deskutils/kmail/files/patch-git_97e165 b/deskutils/kmail/files/patch-git_97e165
deleted file mode 100644
index f16bf6e9a38a..000000000000
--- a/deskutils/kmail/files/patch-git_97e165
+++ /dev/null
@@ -1,75 +0,0 @@
-From 97e165dcf5a851ee10526631d24f9af7736da2e6 Mon Sep 17 00:00:00 2001
-From: David Faure <faure@kde.org>
-Date: Thu, 6 Jun 2019 18:10:42 +0200
-Subject: Fix kontact crash on logout.
-
-Summary:
-KMail was creating new Akonadi jobs during mainwindow destruction,
-due to not testing the bool in GuiActivateEvent.
-
-Same bt in bug 404881, apparently quitting from the akregator tray icon
-[which quits all of kontact... separate issue...] gave the same crash.
-
-BUG: 404881
-FIXED-IN: 19.04.2
-
-Test Plan: Run kontact, logout. Hello Drkonqi.
-
-Reviewers: mlaurent, winterz
-
-Reviewed By: mlaurent, winterz
-
-Subscribers: kde-pim
-
-Tags: #kde_pim
-
-Differential Revision: https://phabricator.kde.org/D21626
----
- src/kmail_part.cpp | 23 ++++++++++++-----------
- 1 file changed, 12 insertions(+), 11 deletions(-)
-
-diff --git a/src/kmail_part.cpp b/src/kmail_part.cpp
-index 703a1ee..96c4c07 100644
---- src/kmail_part.cpp
-+++ src/kmail_part.cpp
-@@ -33,6 +33,7 @@
-
- #include <QVBoxLayout>
-
-+#include <KParts/GUIActivateEvent>
- #include <kparts/statusbarextension.h>
- #include <kparts/mainwindow.h>
- #include <kpluginfactory.h>
-@@ -129,18 +130,18 @@ bool KMailPart::openFile()
- void KMailPart::guiActivateEvent(KParts::GUIActivateEvent *e)
- {
- KParts::ReadOnlyPart::guiActivateEvent(e);
-- mainWidget->initializeFilterActions();
-- mainWidget->tagActionManager()->createActions();
-- mainWidget->folderShortcutActionManager()->createActions();
-- mainWidget->populateMessageListStatusFilterCombo();
-- mainWidget->initializePluginActions();
-- /*
-- FIXME it doesn't work when we switch component.
-- const QString title = mainWidget->fullCollectionPath();
-- if (!title.isEmpty()) {
-- Q_EMIT setWindowCaption(title);
-+ if (e->activated()) {
-+ mainWidget->initializeFilterActions();
-+ mainWidget->tagActionManager()->createActions();
-+ mainWidget->folderShortcutActionManager()->createActions();
-+ mainWidget->populateMessageListStatusFilterCombo();
-+ mainWidget->initializePluginActions();
-+
-+ const QString title = mainWidget->fullCollectionPath();
-+ if (!title.isEmpty()) {
-+ Q_EMIT setWindowCaption(title);
-+ }
- }
-- */
- }
-
- void KMailPart::exit()
---
-cgit v1.1
-