summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2016-03-25 16:33:51 +0100
committerMichael Palimaka <kensington@gentoo.org>2016-03-27 03:46:16 +1100
commit71519edfa90d0a14093df6e753b3a9de39cc16a3 (patch)
treebf8e2aed9a8155e1315f8abc6cd8ae8c4085fc7a /kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch
parentkde-apps/gpgmepp: Move 15.12.3 from kde overlay (diff)
downloadgentoo-71519edfa90d0a14093df6e753b3a9de39cc16a3.tar.gz
gentoo-71519edfa90d0a14093df6e753b3a9de39cc16a3.tar.bz2
gentoo-71519edfa90d0a14093df6e753b3a9de39cc16a3.zip
kde-apps: Drop KF5 part of 15.08.3
Package-Manager: portage-2.2.27
Diffstat (limited to 'kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch')
-rw-r--r--kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch b/kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch
deleted file mode 100644
index 3d83c1bf02a0..000000000000
--- a/kde-apps/ark/files/ark-15.08.3-fix-lingering-processes.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: Weng Xuetian <wengxt@gmail.com>
-Date: Tue, 15 Dec 2015 07:40:43 +0000
-Subject: Fix ark doesn't exit with kxmlgui 5.17.
-X-Git-Url: http://quickgit.kde.org/?p=ark.git&a=commitdiff&h=f7312a26d31cdc31776a09df600327ca86d3daea
----
-Fix ark doesn't exit with kxmlgui 5.17.
-
-Previously setQuitOnLastWindowClosed is reset by KMainWindow::init but
-now it's removed in 5.17. Change to use setQuitOnLastWindowClosed in ark
-only when it's using a kjob and connect quit() to finished signal.
-
-REVIEW: 126358
----
-
-
---- a/app/main.cpp
-+++ b/app/main.cpp
-@@ -119,7 +119,6 @@
- QStringLiteral("http://littlesvr.ca/misc/contactandrew.php"));
-
- application.setWindowIcon(QIcon::fromTheme(QStringLiteral("ark")));
-- application.setQuitOnLastWindowClosed(false);
-
- QCommandLineParser parser;
- parser.setApplicationDescription(aboutData.shortDescription());
-@@ -196,6 +195,7 @@
- parser.isSet(QStringLiteral("add-to"))) {
-
- AddToArchive *addToArchiveJob = new AddToArchive(&application);
-+ application.setQuitOnLastWindowClosed(false);
- application.connect(addToArchiveJob, SIGNAL(result(KJob*)), SLOT(quit()), Qt::QueuedConnection);
-
- if (parser.isSet(QStringLiteral("changetofirstpath"))) {
-@@ -233,6 +233,7 @@
- } else if (parser.isSet(QStringLiteral("batch"))) {
-
- BatchExtract *batchJob = new BatchExtract(&application);
-+ application.setQuitOnLastWindowClosed(false);
- application.connect(batchJob, SIGNAL(result(KJob*)), SLOT(quit()), Qt::QueuedConnection);
-
- for (int i = 0; i < urls.count(); ++i) {
-