-rw-r--r-- | libopie/todoevent.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libopie/todoevent.cpp b/libopie/todoevent.cpp index b820150..aa348a2 100644 --- a/libopie/todoevent.cpp +++ b/libopie/todoevent.cpp @@ -147,4 +147,5 @@ QString ToDoEvent::richText() const // I am not sure whether there is no better way doing this !? Categories catdb; + bool firstloop = true; catdb.load( categoryFileName() ); catlist = allCategories(); @@ -152,4 +153,8 @@ QString ToDoEvent::richText() const text += "<b>" + QObject::tr( "Category:") + "</b> "; for ( QStringList::Iterator it = catlist.begin(); it != catlist.end(); ++it ) { + if (!firstloop){ + text += ", "; + } + firstloop = false; text += catdb.label ("todo", (*it).toInt()); } |