From bb2e0b5e879f80b7a462643d9413a602b764daed Mon Sep 17 00:00:00 2001 From: David Korth Date: Mon, 9 Jun 2025 18:13:47 -0400 Subject: [PATCH] [kde] AchQtDBus::notifyFunc(): Fix the Qt4 build. --- src/kde/AchQtDBus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kde/AchQtDBus.cpp b/src/kde/AchQtDBus.cpp index 840ddbe48..697547fee 100644 --- a/src/kde/AchQtDBus.cpp +++ b/src/kde/AchQtDBus.cpp @@ -110,8 +110,8 @@ int AchQtDBus::notifyFunc(Achievements::ID id) // Build the text. // TODO: Better formatting? -#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) QString text = QString::fromLatin1("%1\n%2") +#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) .arg(U82Q(pAch->getName(id)).toHtmlEscaped(), U82Q(pAch->getDescUnlocked(id)).toHtmlEscaped()); #else /* QT_VERSION < QT_VERSION_CHECK(5, 0, 0) */