diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-10 20:11:31 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-10 22:30:22 +0100 |
commit | 3fa6d920893766911f27b7775c0492b409944e6a (patch) | |
tree | 108d14d03f0cae1229fb85b03791e4cc3f3a8bb9 /kde-apps/kcharselect/files | |
parent | kde-frameworks: Add KDE Frameworks 5.64.0 (diff) | |
download | gentoo-3fa6d920893766911f27b7775c0492b409944e6a.tar.gz gentoo-3fa6d920893766911f27b7775c0492b409944e6a.tar.bz2 gentoo-3fa6d920893766911f27b7775c0492b409944e6a.zip |
kde-apps: Add KDE Applications 19.08.3
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/kcharselect/files')
-rw-r--r-- | kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch b/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch new file mode 100644 index 000000000000..884ed6a79628 --- /dev/null +++ b/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch @@ -0,0 +1,32 @@ +From 956b63170b2606fb274f0bd90399dac0ae9dbcd4 Mon Sep 17 00:00:00 2001 +From: Laurent Montel <montel@kde.org> +Date: Tue, 17 Sep 2019 13:41:01 +0200 +Subject: Make it compiles against qt5.14 + +--- + kcharselectdia.cc | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/kcharselectdia.cc b/kcharselectdia.cc +index f1790b5..116cba4 100644 +--- a/kcharselectdia.cc ++++ b/kcharselectdia.cc +@@ -265,7 +265,6 @@ void KCharSelectDia::toClipHTML() + QClipboard *cb = QApplication::clipboard(); + QString input; + QString html; +- QString tempstring; + QChar tempchar; + int i = 0; + +@@ -282,7 +281,7 @@ void KCharSelectDia::toClipHTML() + } + else + { +- html.append(tempstring.sprintf("&#x%x;", tempchar.unicode())); ++ html.append(QString::asprintf("&#x%x;", tempchar.unicode())); + } + } + cb->setText(html); +-- +cgit v1.1 |