~seb128/sync-monitor/synchronization-typo

« back to all changes in this revision

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

  • Committer: CI bot
  • Author(s): Renato Araujo Oliveira Filho
  • Date: 2014-04-09 06:46:43 UTC
  • mfrom: (17.1.46 initial-release)
  • Revision ID: ps-jenkins@lists.canonical.com-20140409064643-bidc0po4gfxj6vol
Updated package version. Fixes: 1302159, 1302160, 1302171

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