From 02ea27f28c1ba42e90ab34f8e39f2813e98479b0 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Fri, 7 Sep 2007 14:46:30 +0000 Subject: [PATCH] Remove ! from title/author strings. I could not find a special meaning for it in csv. If I'm wrong, change it again, but add to the context message. svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=709464 --- keduvocdocument/keduvoccsvwriter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keduvocdocument/keduvoccsvwriter.cpp b/keduvocdocument/keduvoccsvwriter.cpp index ef4a025..056d4d3 100644 --- a/keduvocdocument/keduvoccsvwriter.cpp +++ b/keduvocdocument/keduvoccsvwriter.cpp @@ -45,8 +45,8 @@ bool KEduVocCsvWriter::writeDoc( KEduVocDocument *doc, const QString &generator outputStream.setDevice( m_outputFile ); outputStream.setCodec( "UTF-8" ); - outputStream << i18nc( "@item:intable the title of the document will be written here", "! Title:" ) << separator << m_doc->title() << "\n"; - outputStream << i18nc( "@item:intable the author will be written here", "! Author:" ) << separator << m_doc->author() << "\n"; + outputStream << i18nc( "@item:intable the title of the document will be written here", "Title:" ) << separator << m_doc->title() << "\n"; + outputStream << i18nc( "@item:intable the author will be written here", "Author:" ) << separator << m_doc->author() << "\n"; KEduVocExpression *expression; int idCount = m_doc->identifierCount(); -- 2.47.3