diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-07-30 04:15:06 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-07-30 04:15:06 +0000 |
commit | 6c99bae4c71c2ee576ccaef661cedea5a652a9d3 (patch) | |
tree | ce6f066032ccafa7a86318cb0500239f82965604 /user/skanlite/build.patch | |
parent | c4068760a6735db6c5b785827ccf2bb9f95eb25c (diff) | |
download | packages-6c99bae4c71c2ee576ccaef661cedea5a652a9d3.tar.gz packages-6c99bae4c71c2ee576ccaef661cedea5a652a9d3.tar.bz2 packages-6c99bae4c71c2ee576ccaef661cedea5a652a9d3.tar.xz packages-6c99bae4c71c2ee576ccaef661cedea5a652a9d3.zip |
user/skanlite: Update to 2.2.0
Diffstat (limited to 'user/skanlite/build.patch')
-rw-r--r-- | user/skanlite/build.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/user/skanlite/build.patch b/user/skanlite/build.patch new file mode 100644 index 000000000..21d0e73bf --- /dev/null +++ b/user/skanlite/build.patch @@ -0,0 +1,27 @@ +From b110846fadeb4f8fab48e0f488a335de7e16a7be Mon Sep 17 00:00:00 2001 +From: Wolfgang Bauer <wbauer@tmo.at> +Date: Wed, 15 Jul 2020 09:11:43 +0000 +Subject: [PATCH] Fix compilation with Qt before 5.14 + +This line has been forgotten to be changed in commit 823abcd2, resulting +in a compiler error when e.g. building with Qt 5.12 LTS. +--- + src/SaveLocation.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/SaveLocation.cpp b/src/SaveLocation.cpp +index 9709d49..d210be8 100644 +--- a/src/SaveLocation.cpp ++++ b/src/SaveLocation.cpp +@@ -42,7 +42,7 @@ SaveLocation::SaveLocation(QWidget *parent) + connect(m_ui->u_urlRequester, &KUrlRequester::textChanged, this, &SaveLocation::updateGui); + connect(m_ui->u_imgPrefix, &QLineEdit::textChanged, this, &SaveLocation::updateGui); + #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) +- connect(u_imgFormat, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::activated), this, &SaveLocation::updateGui); ++ connect(m_ui->u_imgFormat, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::activated), this, &SaveLocation::updateGui); + #else + connect(m_ui->u_imgFormat, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::textActivated), this, &SaveLocation::updateGui); + #endif +-- +GitLab + |