X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=20d84d9015afb597a096c61b0824ed681ce776ef;hb=f111b1c5f4056c20fba0ab0bb1570e1cc156fe87;hp=da55338d2de6583f1c2fc158e831d73fbc3647cc;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222;p=quassel.git diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index da55338d..20d84d90 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2014 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -56,7 +56,11 @@ void KNotificationBackend::notify(const Notification &n) type = "PrivMsgFocused"; break; } +#if QT_VERSION < 0x050000 QString message = QString("<%1> %2").arg(n.sender, Qt::escape(n.message)); +#else + QString message = QString("<%1> %2").arg(n.sender, n.message.toHtmlEscaped()); +#endif KNotification *notification = KNotification::event(type, message, DesktopIcon("dialog-information"), QtUi::mainWindow(), KNotification::RaiseWidgetOnActivation |KNotification::CloseWhenWidgetActivated