summaryrefslogtreecommitdiff
path: root/core/pim/osearch/doclnkitem.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/doclnkitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/doclnkitem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/osearch/doclnkitem.cpp b/core/pim/osearch/doclnkitem.cpp
index a1d0384..56eb26a 100644
--- a/core/pim/osearch/doclnkitem.cpp
+++ b/core/pim/osearch/doclnkitem.cpp
@@ -32,15 +32,15 @@ DocLnkItem::~DocLnkItem()
32 32
33QString DocLnkItem::toRichText() 33QString DocLnkItem::toRichText()
34{ 34{
35 QString text; 35 QString text;
36 text += "<b><h3>" + _doc->name() + "</b></h3><br>"; 36 text += "<b><h3>" + _doc->name() + "</b></h3><br>";
37 text += _doc->comment() + "<br>"; 37 text += _doc->comment() + "<br>";
38 text += "File: " + _doc->file() + "<br>"; 38 text += QObject::tr("File: ") + _doc->file() + "<br>";
39 text += "Link: " + _doc->linkFile() + "<br>"; 39 text += QObject::tr("Link: ") + _doc->linkFile() + "<br>";
40 text += "Mimetype: " + _doc->type() + "<br>"; 40 text += QObject::tr("Mimetype: ") + _doc->type() + "<br>";
41 if ( _doc->type().contains( "text" ) ){ 41 if ( _doc->type().contains( "text" ) ){
42 text += "<br><br><hr><br>"; 42 text += "<br><br><hr><br>";
43 QFile f(_doc->file()); 43 QFile f(_doc->file());
44 if ( f.open(IO_ReadOnly) ) { 44 if ( f.open(IO_ReadOnly) ) {
45 QTextStream t( &f ); 45 QTextStream t( &f );
46 while ( !t.eof() ) 46 while ( !t.eof() )