[neon/kde/kio/Neon/unstable] debian/patches: not const

Jonathan Riddell null at kde.org
Thu Feb 25 12:59:50 GMT 2021


Git commit 43bd56562dbc0c88602fa59e5aaf55548b21d546 by Jonathan Riddell.
Committed on 25/02/2021 at 12:59.
Pushed by jriddell into branch 'Neon/unstable'.

not const

M  +1    -1    debian/patches/libexec_from_env.patch

https://invent.kde.org/neon/kde/kio/commit/43bd56562dbc0c88602fa59e5aaf55548b21d546

diff --git a/debian/patches/libexec_from_env.patch b/debian/patches/libexec_from_env.patch
index 508b51d..1f1d163 100644
--- a/debian/patches/libexec_from_env.patch
+++ b/debian/patches/libexec_from_env.patch
@@ -20,7 +20,7 @@ Index: kio/src/core/slave.cpp
 -        const QStringList searchPaths = QStringList() << QCoreApplication::applicationDirPath() // then look where our application binary is located
 -                                                      << qlibexec << qlibexecKF5
 -                                                      << QFile::decodeName(KDE_INSTALL_FULL_LIBEXECDIR_KF5); // look at our installation location
-+        const QStringList searchPaths = QStringList();
++        QStringList searchPaths = QStringList();
 +
 +        if (qEnvironmentVariableIsSet("KF5_LIBEXEC_DIR")) {
 +            searchPaths << QTextCodec::codecForLocale()->toUnicode(qgetenv("KF5_LIBEXEC_DIR"));


More information about the Neon-commits mailing list