summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2016-06-24 06:52:31 +1000
committerMichael Palimaka <kensington@gentoo.org>2016-07-08 03:52:08 +1000
commit581d3a57fb642a5b567b3b6fc6e80ef9daf38f6f (patch)
tree65a0453280be9851b5813f4deb727743647c1f01 /kde-apps/ark/files
parentkde-base: drop ~ppc/~ppc64 keyword (diff)
downloadgentoo-581d3a57fb642a5b567b3b6fc6e80ef9daf38f6f.tar.gz
gentoo-581d3a57fb642a5b567b3b6fc6e80ef9daf38f6f.tar.bz2
gentoo-581d3a57fb642a5b567b3b6fc6e80ef9daf38f6f.zip
kde-apps: remove 4.14.3
Certain packages are however retained where they are specifically required by revdeps or otherwise still needed by Plasma 4.
Diffstat (limited to 'kde-apps/ark/files')
-rw-r--r--kde-apps/ark/files/ark-4.14.3-crash.patch81
1 files changed, 0 insertions, 81 deletions
diff --git a/kde-apps/ark/files/ark-4.14.3-crash.patch b/kde-apps/ark/files/ark-4.14.3-crash.patch
deleted file mode 100644
index 5eccf82062fd..000000000000
--- a/kde-apps/ark/files/ark-4.14.3-crash.patch
+++ /dev/null
@@ -1,81 +0,0 @@
-From cd8ad2761d41d1ec0a18cff7f4d166b53c899fc2 Mon Sep 17 00:00:00 2001
-From: Raphael Kubo da Costa <rakuco@FreeBSD.org>
-Date: Mon, 24 Nov 2014 01:37:06 +0200
-Subject: [PATCH] Stop crashing on exit when being used solely as a KPart.
-
-This change fixes a crash introduced by commit 3b981ca ("Remove Part
-from KXMLGUIFactory on exit").
-
-Part::~Part() is the wrong place to call KXMLGUIFactory::removeClient(),
-as it assumes addClient() had been called in the first place.
-
-This is only true if Ark is called as a standalone program, since that
-is done in MainWindow::loadPart()'s call to KXMLGuiWindow::createGUI().
-
-Conversely, if the Ark KPart is being used as an embedded viewer in,
-say, Konqueror or to preview an archive inside an archive (ie. Ark
-inside Ark) that does not hold true and we try to access a
-KXMLGUIFactory that does not exist.
-
-Instead, call KXMLGuiWindow::removeClient() in MainWindow's destructor,
-since in this case we are certain that addClient() was been called
-before.
-
-CCBUG: 341187
-
-(cherry picked from commit 9c30f30b38c36a31e6fcb3aa047a0247ac5a22fb)
-This was committed for completeness, as there will be no additional
-releases from the KDE/4.14 branch.
-
-Conflicts:
- part/part.cpp
----
- app/mainwindow.cpp | 3 +++
- part/part.cpp | 3 ---
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp
-index aee8231..181fe76 100644
---- a/app/mainwindow.cpp
-+++ b/app/mainwindow.cpp
-@@ -38,6 +38,7 @@
- #include <KDebug>
- #include <KEditToolBar>
- #include <KShortcutsDialog>
-+#include <KXMLGUIFactory>
-
- #include <QDragEnterEvent>
- #include <QDragMoveEvent>
-@@ -69,6 +70,8 @@ MainWindow::~MainWindow()
- if (m_recentFilesAction) {
- m_recentFilesAction->saveEntries(KGlobal::config()->group("Recent Files"));
- }
-+
-+ guiFactory()->removeClient(m_part);
- delete m_part;
- m_part = 0;
- }
-diff --git a/part/part.cpp b/part/part.cpp
-index bae4882..09fe1cb 100644
---- a/part/part.cpp
-+++ b/part/part.cpp
-@@ -53,7 +53,6 @@
- #include <KStandardGuiItem>
- #include <KTempDir>
- #include <KToggleAction>
--#include <KXMLGUIFactory>
-
- #include <QAction>
- #include <QCursor>
-@@ -138,8 +137,6 @@ Part::Part(QWidget *parentWidget, QObject *parent, const QVariantList& args)
-
- Part::~Part()
- {
-- factory()->removeClient(this);
--
- saveSplitterSizes();
-
- m_extractFilesAction->menu()->deleteLater();
---
-2.0.5
-