[plasma/kwin] src: debugconsole: show executable for unknown sources
Kai Li <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 28e81bcaea2687459a1ce3ba7f97eb34a3017386 by Kai Li, on behalf of Li Kai.
Committed on 30/07/2026 at 02:54.
Pushed by vladz into branch 'master'.
debugconsole: show executable for unknown sources
M +1 -1 src/debug_console.cpp
https://invent.kde.org/plasma/kwin/-/commit/28e81bcaea2687459a1ce3ba7f97eb34a3017386
diff --git a/src/debug_console.cpp b/src/debug_console.cpp
index a252f843715..c1041c1c575 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);