~phablet-team/telephony-service/trunk

« back to all changes in this revision

Viewing changes to indicator/indicatordbus.cpp

  • Committer: Gustavo Pichorim Boiko
  • Date: 2015-05-19 18:34:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1080.
  • Revision ID: gustavo.boiko@canonical.com-20150519183406-guzqj7hha3zvcc1w
Make it possible to clear call notifications.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "indicatordbus.h"
25
25
#include "indicatoradaptor.h"
 
26
#include "messagingmenu.h"
26
27
 
27
28
// Qt
28
29
#include <QtDBus/QDBusConnection>
57
58
    Q_EMIT clearNotificationsRequested();
58
59
}
59
60
 
 
61
void IndicatorDBus::ClearCallNotification(const QString &targetId, const QString &accountId)
 
62
{
 
63
    MessagingMenu::instance()->removeCall(targetId, accountId);
 
64
}
 
65