~seb128/sync-monitor/synchronization-typo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "notify-message.h"

#include <QtCore/QDebug>

NotifyMessage::NotifyMessage()
{
}

NotifyMessage::~NotifyMessage()
{
}

void NotifyMessage::show(const QString &title, const QString &msg, const QString &icon)
{
    Q_UNUSED(icon);
    qDebug() << title << "\t" << msg;
}