summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-09-03 22:05:42 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-09-03 22:05:42 +0200
commit87766f4f5741763d21be52b3cbb0ff48085c4a9f (patch)
tree9d86ef5c8b4717a27dad559778a6e1290e17dece /media-sound/cantata/files
parentmedia-sound/cantata: 2.3.2 version bump (diff)
downloadgentoo-87766f4f5741763d21be52b3cbb0ff48085c4a9f.tar.gz
gentoo-87766f4f5741763d21be52b3cbb0ff48085c4a9f.tar.bz2
gentoo-87766f4f5741763d21be52b3cbb0ff48085c4a9f.zip
media-sound/cantata: Drop old
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'media-sound/cantata/files')
-rw-r--r--media-sound/cantata/files/cantata-2.2.0-qtsql-5.10.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/media-sound/cantata/files/cantata-2.2.0-qtsql-5.10.patch b/media-sound/cantata/files/cantata-2.2.0-qtsql-5.10.patch
deleted file mode 100644
index 16cb6d8c2d1f..000000000000
--- a/media-sound/cantata/files/cantata-2.2.0-qtsql-5.10.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 4da7a9128f2c5eaf23ae2a5006d300dc4f21fc6a Mon Sep 17 00:00:00 2001
-From: Craig Drummond <craig.p.drummond@gmail.com>
-Date: Tue, 28 Nov 2017 22:37:01 +0000
-Subject: [PATCH] Create QSqlQuery, then call prepare Issue #1130
-
----
- db/librarydb.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/db/librarydb.cpp b/db/librarydb.cpp
-index 603d8abc1..4f75dc28f 100644
---- a/db/librarydb.cpp
-+++ b/db/librarydb.cpp
-@@ -453,7 +453,8 @@ class SqlQuery
- if (limit>0) {
- sql+=" LIMIT "+QString::number(limit);
- }
-- query=QSqlQuery(sql, db);
-+ query = QSqlQuery(db);
-+ query.prepare(sql);
-
- for (const QVariant &value: boundValues) {
- query.addBindValue(value);