summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnkitem.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/applnkitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/applnkitem.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/osearch/applnkitem.cpp b/core/pim/osearch/applnkitem.cpp
index 0d04be6..2c4a4cb 100644
--- a/core/pim/osearch/applnkitem.cpp
+++ b/core/pim/osearch/applnkitem.cpp
@@ -12,24 +12,25 @@
12// 12//
13#include "applnkitem.h" 13#include "applnkitem.h"
14 14
15#include <qpe/applnk.h> 15#include <qpe/applnk.h>
16#include <qfileinfo.h> 16#include <qfileinfo.h>
17#include <qpe/qcopenvelope_qws.h> 17#include <qpe/qcopenvelope_qws.h>
18 18
19AppLnkItem::AppLnkItem(OListViewItem* parent, AppLnk *app) 19AppLnkItem::AppLnkItem(OListViewItem* parent, AppLnk *app)
20 : ResultItem(parent) 20 : ResultItem(parent)
21{ 21{
22 _app = app; 22 _app = app;
23 setText(0, _app->name() ); 23 setText(0, _app->name() );
24 setPixmap(0, _app->pixmap() );
24} 25}
25 26
26 27
27AppLnkItem::~AppLnkItem() 28AppLnkItem::~AppLnkItem()
28{ 29{
29} 30}
30 31
31 32
32QString AppLnkItem::toRichText() 33QString AppLnkItem::toRichText()
33{ 34{
34 QString text; 35 QString text;
35 text += "<b><h3>" + _app->name() + "</b></h3><br>"; 36 text += "<b><h3>" + _app->name() + "</b></h3><br>";