Remove qdebug call.

This commit is contained in:
Patrick von Reth 2015-09-11 17:27:30 +02:00
parent 05410652ca
commit 490e86917f
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@ FreedesktopBackend::FreedesktopBackend()
QDBusPendingReply<QStringList> reply = m_interface->GetCapabilities(); QDBusPendingReply<QStringList> reply = m_interface->GetCapabilities();
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this); QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);
connect(watcher, &QDBusPendingCallWatcher::finished, [reply, watcher, this](){ connect(watcher, &QDBusPendingCallWatcher::finished, [reply, watcher, this](){
qDebug() << reply.value();
m_supportsRichtext = reply.value().contains(QLatin1String("body-markup")); m_supportsRichtext = reply.value().contains(QLatin1String("body-markup"));
watcher->deleteLater(); watcher->deleteLater();
}); });