From 65c1d23402f8df58524a8e182b00745cf9a4c3af Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 17 Dec 2002 13:46:35 +0000 Subject: - word puzzle fix by Carsten --- (limited to 'core/pim/todo/tableview.cpp') diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp index 2434150..f59971e 100644 --- a/core/pim/todo/tableview.cpp +++ b/core/pim/todo/tableview.cpp @@ -379,7 +379,7 @@ void TableView::paintCell(QPainter* p, int row, int col, const QRect& cr, bool QString text; if (task.hasDueDate()) { int off = QDate::currentDate().daysTo( task.dueDate() ); - text = QString::number(off) + tr(" day(s)"); + text = tr( "%1 day(s)").arg(QString::number(off)); /* * set color if not completed */ -- cgit v0.9.0.2