X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fstatusnotifieritem.cpp;h=a1d2916a9a8304b8295964b18d5ab1b6933dee4a;hb=c52a94cb937654bf06d5074bf0736a52ec94a52d;hp=e96cd4eb7f148147aebd762c9feb06796f816142;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a;p=quassel.git diff --git a/src/qtui/statusnotifieritem.cpp b/src/qtui/statusnotifieritem.cpp index e96cd4eb..a1d2916a 100644 --- a/src/qtui/statusnotifieritem.cpp +++ b/src/qtui/statusnotifieritem.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This contains code from KStatusNotifierItem, part of the KDE libs * @@ -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 @@ -293,7 +293,7 @@ bool StatusNotifierItem::eventFilter(QObject *watched, QEvent *event) { if (mode() == StatusNotifier) { //FIXME: ugly ugly workaround to weird QMenu's focus problems -#ifdef HAVE_KDE +#ifdef HAVE_KDE4 if (watched == trayMenu() && (event->type() == QEvent::WindowDeactivate || (event->type() == QEvent::MouseButtonRelease && static_cast(event)->button() == Qt::LeftButton))) { // put at the back of event queue to let the action activate anyways @@ -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)