From: Manuel Nickschas Date: Sun, 6 Jul 2008 00:07:41 +0000 (+0200) Subject: debug-- X-Git-Tag: 0.3.0~228 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=caf97a87fb0a4d4d1bfa3f5bf855e5fc1f2a7f66;hp=9d32e4eb35cecd82d936d2de7da7e7e7dc606667 debug-- --- diff --git a/src/qtui/mainwin.cpp b/src/qtui/mainwin.cpp index 7efe5f22..66d4f6f1 100644 --- a/src/qtui/mainwin.cpp +++ b/src/qtui/mainwin.cpp @@ -662,24 +662,25 @@ void MainWin::sendDesktopNotification(const QString &title, const QString &messa if(!reply.isValid()) { /* ERROR */ - qDebug() << "Error on sending notification..." << reply; + // could also happen if no notification service runs, so... whatever :) + //qDebug() << "Error on sending notification..." << reply.error(); return; } notificationId = reply.value(); - qDebug() << "ID: " << notificationId << " Time: " << QTime::currentTime().toString(); + // qDebug() << "ID: " << notificationId << " Time: " << QTime::currentTime().toString(); } void MainWin::desktopNotificationClosed(uint id, uint reason) { - qDebug() << "OID: " << notificationId << " ID: " << id << " Reason: " << reason << " Time: " << QTime::currentTime().toString(); + // qDebug() << "OID: " << notificationId << " ID: " << id << " Reason: " << reason << " Time: " << QTime::currentTime().toString(); notificationId = 0; } void MainWin::desktopNotificationInvoked(uint id, const QString & action) { - qDebug() << "OID: " << notificationId << " ID: " << id << " Action: " << action << " Time: " << QTime::currentTime().toString(); + // qDebug() << "OID: " << notificationId << " ID: " << id << " Action: " << action << " Time: " << QTime::currentTime().toString(); } #else /* HAVE_DBUS */