summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnkitem.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/applnkitem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/applnkitem.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/core/pim/osearch/applnkitem.cpp b/core/pim/osearch/applnkitem.cpp
index 1e7b1fb..0d04be6 100644
--- a/core/pim/osearch/applnkitem.cpp
+++ b/core/pim/osearch/applnkitem.cpp
@@ -37,2 +37,4 @@ QString AppLnkItem::toRichText()
text += "<br>`" + _app->exec() + "`<br>";
+ text += "<br>`" + _app->file() + "`<br>";
+ text += "<br>`" + _app->linkFile() + "`<br>";
return text;
@@ -45,8 +47,4 @@ void AppLnkItem::action( int act )
else if (act == 1){
- QFileInfo file( _app->file() );
- qDebug("opening %s in filemanager", file.dirPath().latin1());
QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)");
- e << file.dirPath();
-// QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)");
- // e << _app->file();
+ e << _app->linkFile();
}