summaryrefslogtreecommitdiff
path: root/kde-frameworks/ktexteditor/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-18 10:15:03 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-18 10:15:03 +0000
commitb284a3168fa91a038925d2ecf5e4791011ea5e7d (patch)
tree16fe44748708acacd909d4e2e160a09a7f6d936a /kde-frameworks/ktexteditor/files
parent77398e424e45d9e98c1cef3c43bdadb9d56e81ef (diff)
gentoo resync : 18.11.2019
Diffstat (limited to 'kde-frameworks/ktexteditor/files')
-rw-r--r--kde-frameworks/ktexteditor/files/ktexteditor-5.63.0-crashfix.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/kde-frameworks/ktexteditor/files/ktexteditor-5.63.0-crashfix.patch b/kde-frameworks/ktexteditor/files/ktexteditor-5.63.0-crashfix.patch
deleted file mode 100644
index f6c867cad656..000000000000
--- a/kde-frameworks/ktexteditor/files/ktexteditor-5.63.0-crashfix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From f6e72a23052339253daa79095391625cf01c96f1 Mon Sep 17 00:00:00 2001
-From: Christoph Cullmann <cullmann@kde.org>
-Date: Mon, 28 Oct 2019 20:32:13 +0100
-Subject: fix crash
-
-BUG: 413474
----
- src/utils/katevariableexpansionhelpers.cpp | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/utils/katevariableexpansionhelpers.cpp b/src/utils/katevariableexpansionhelpers.cpp
-index db71d0f..89aab3d 100644
---- a/src/utils/katevariableexpansionhelpers.cpp
-+++ b/src/utils/katevariableexpansionhelpers.cpp
-@@ -278,7 +278,9 @@ KateVariableExpansionDialog::KateVariableExpansionDialog(QWidget *parent)
- connect(m_listView, &QAbstractItemView::activated, [this, lblDescription, lblCurrentValue](const QModelIndex &index) {
- if (index.isValid()) {
- const auto &var = m_variables[m_filterModel->mapToSource(index).row()];
-- const auto name = QStringLiteral("%{") + var.name() + QLatin1Char('}');
-+
-+ // not auto, don't fall for string builder, see bug 413474
-+ const QString name = QStringLiteral("%{") + var.name() + QLatin1Char('}');
-
- if (parentWidget() && parentWidget()->window()) {
- auto currentWidget = parentWidget()->window()->focusWidget();
---
-cgit v1.1