[plasma/kwin/Plasma/6.7] src: debugconsole: show executable for unknown sources
Vlad Zahorodnii <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 1e0e479235fed7d0c7908a2d1e277812c0aadb89 by Vlad Zahorodnii. Committed on 30/07/2026 at 06:20. Pushed by vladz into branch 'Plasma/6.7'. debugconsole: show executable for unknown sources (cherry picked from commit 28e81bcaea2687459a1ce3ba7f97eb34a3017386) Co-authored-by: Li Kai <[email protected]> M +1 -1 src/debug_console.cpp https://invent.kde.org/plasma/kwin/-/commit/1e0e479235fed7d0c7908a2d1e277812c0aadb89 diff --git a/src/debug_console.cpp b/src/debug_console.cpp index 0652ff3e82d..c6817d8edc6 100644 --- a/src/debug_console.cpp +++ b/src/debug_console.cpp @@ -689,7 +689,7 @@ static QString sourceString(const AbstractDataSource *const source) return QStringLiteral("data control by %1").arg(executable); } - return QStringLiteral("unknown source of").arg(executable); + return QStringLiteral("unknown source of %1").arg(executable); } return QStringLiteral("%1(0x%2)").arg(source->metaObject()->className()).arg(qulonglong(source), 0, 16);