X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fstatusnotifieritem.cpp;h=b29a360fb32f9024ca736e11e9eb71e8ef7cea04;hp=4eb73b36190fce37ee1bad9f18fdb871d3902af3;hb=f3d6f8088d8be6af9319a99fb8d2fee2837b540a;hpb=9d54503555534a2c554f09a33df6afa33d6308ec diff --git a/src/qtui/statusnotifieritem.cpp b/src/qtui/statusnotifieritem.cpp index 4eb73b36..b29a360f 100644 --- a/src/qtui/statusnotifieritem.cpp +++ b/src/qtui/statusnotifieritem.cpp @@ -51,7 +51,7 @@ public: protected: virtual QString iconNameForAction(QAction *action) // TODO Qt 4.7: fixme when we have converted our iconloader { - Icon icon(action->icon()); + QIcon icon(action->icon()); #if QT_VERSION >= 0x040701 // QIcon::name() is in the 4.7 git branch, but it is not in 4.7 TP. // If you get a build error here, you need to update your pre-release @@ -314,7 +314,11 @@ void StatusNotifierItem::showMessage(const QString &title, const QString &messag QString message = message_; if (_notificationsClient->isValid()) { if (_notificationsClientSupportsMarkup) +#if QT_VERSION < 0x050000 message = Qt::escape(message); +#else + message = message.toHtmlEscaped(); +#endif QStringList actions; if (_notificationsClientSupportsActions)