Remove unneeded include from QtDBus notifications

This commit is contained in:
Ilya Fedin 2020-01-24 17:42:48 +04:00 committed by John Preston
parent bb64285c3a
commit 1d85416434
1 changed files with 3 additions and 4 deletions

View File

@ -11,8 +11,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "lang/lang_keys.h"
#include "facades.h"
#include <QtCore/QBuffer>
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
#include <QtCore/QVersionNumber>
#include <QtDBus/QDBusConnection>
@ -102,7 +100,8 @@ NotificationData::NotificationData(
if (capabilities.contains(qsl("body-markup"))) {
_body = subtitle.isEmpty()
? msg.toHtmlEscaped()
: qsl("<b>%1</b>\n%2").arg(subtitle.toHtmlEscaped())
: qsl("<b>%1</b>\n%2")
.arg(subtitle.toHtmlEscaped())
.arg(msg.toHtmlEscaped());
} else {
_body = subtitle.isEmpty()
@ -352,7 +351,7 @@ void Manager::Private::showNotification(
const auto key = hideNameAndPhoto
? InMemoryKey()
:peer->userpicUniqueKey();
: peer->userpicUniqueKey();
notification->setImage(_cachedUserpics.get(key, peer));
auto i = _notifications.find(peer->id);