From: Frederik Gladhorn Date: Fri, 7 Sep 2007 14:46:30 +0000 (+0000) Subject: Remove ! from title/author strings. I could not find a special meaning for it in... X-Git-Tag: v3.94.0~69 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=02ea27f28c1ba42e90ab34f8e39f2813e98479b0;p=libqmvoc.git 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 --- 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();