summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-05-02 21:10:22 +0200
committerJohannes Huber <johu@gentoo.org>2018-05-02 21:12:18 +0200
commit19b939a52a4462ec8e7e7650e341ef83d0ea1a16 (patch)
tree818ef811db3fb235e36527028b4f4444746558a9 /media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch
parentnet-analyzer/wireshark: Drop -DDUMPCAP_INSTALL_OPTION=. (diff)
downloadgentoo-19b939a52a4462ec8e7e7650e341ef83d0ea1a16.tar.gz
gentoo-19b939a52a4462ec8e7e7650e341ef83d0ea1a16.tar.bz2
gentoo-19b939a52a4462ec8e7e7650e341ef83d0ea1a16.zip
media-gfx/digikam: Remove 5.7.0-r3
Package-Manager: Portage-2.3.33, Repoman-2.3.9
Diffstat (limited to 'media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch')
-rw-r--r--media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch b/media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch
deleted file mode 100644
index 7001850cd9c4..000000000000
--- a/media-gfx/digikam/files/digikam-5.7.0-qt-5.9.3.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 855ba5b7d4bc6337234720a72ea824ddd3b32e5b Mon Sep 17 00:00:00 2001
-From: Maik Qualmann <metzpinguin@gmail.com>
-Date: Tue, 28 Nov 2017 21:29:00 +0100
-Subject: try to fix the Qt-5.9.3 empty album problem CCBUGS: 387373
-
-* asturm: Fix build w/ Qt-5.7
----
- libs/database/coredb/coredburl.cpp | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/libs/database/coredb/coredburl.cpp b/libs/database/coredb/coredburl.cpp
-index 2c0d0eb..b1bdf71 100644
---- a/libs/database/coredb/coredburl.cpp
-+++ b/libs/database/coredb/coredburl.cpp
-@@ -88,8 +88,13 @@ CoreDbUrl CoreDbUrl::fromAlbumAndName(const QString& name,
- const DbEngineParameters& parameters)
- {
- CoreDbUrl url;
-+ QString path(album);
- url.setScheme(QLatin1String("digikamalbums"));
-- url.setPath(QLatin1Char('/') + album + QLatin1Char('/') + name);
-+
-+ if (path != QLatin1String("/"))
-+ path += QLatin1Char('/');
-+
-+ url.setPath(path + name);
-
- QUrlQuery q(url);
- q.addQueryItem(QLatin1String("albumRoot"), albumRoot.adjusted(QUrl::StripTrailingSlash).toLocalFile());
---
-cgit v0.11.2
-