~phablet-team/sync-monitor/trunk

« back to all changes in this revision

Viewing changes to src/notify-message-mock.cpp

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2014-04-07 22:00:28 UTC
  • mto: (17.3.2 initial-release)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: renato.filho@canonical.com-20140407220028-o690634v7u7bpbp0
Show service icon on notify message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
{
11
11
}
12
12
 
13
 
void NotifyMessage::show(const QString &title, const QString &msg)
 
13
void NotifyMessage::show(const QString &title, const QString &msg, const QString &icon)
14
14
{
 
15
    Q_UNUSED(icon);
15
16
    qDebug() << title << "\t" << msg;
16
17
}
17
18