diff --git a/app/todomodule.cpp b/app/todomodule.cpp index 736b5e4..ad56899 100644 --- a/app/todomodule.cpp +++ b/app/todomodule.cpp @@ -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; } }