This commit is contained in:
Anselme 2015-08-25 17:54:18 +02:00
parent c9376fa1b6
commit fe094031ce

View File

@ -126,12 +126,7 @@ bool TodoModule::messageHandler(Message msg)
t.description = desc;
t.emitter = msg.nick;
tasks.push_back(t);
answer = say(QString("todo successfully added : from %1 to %2 triggering the %3, repeating every %4 seconds, and diplaying this message : %5")
.arg(t.emitter)
.arg(t.recipient)
.arg(QDateTime::fromTime_t(t.date).toString())
.arg((int)(t.repeat))
.arg(t.description));
answer = say(QString("todo successfully added");
return true;
}
}