summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnkitem.cpp
authortille <tille>2003-05-12 17:02:40 (UTC)
committer tille <tille>2003-05-12 17:02:40 (UTC)
commit21157bf1102d428cebc9d8c80eb5c15b0a311328 (patch) (unidiff)
tree554fdb58a7ee3bd8dceec050207bc1ea7fc8fe3a /core/pim/osearch/applnkitem.cpp
parent8a87ca1f7de6a205b47986db8ad4a082f39b9c34 (diff)
downloadopie-21157bf1102d428cebc9d8c80eb5c15b0a311328.zip
opie-21157bf1102d428cebc9d8c80eb5c15b0a311328.tar.gz
opie-21157bf1102d428cebc9d8c80eb5c15b0a311328.tar.bz2
added support for advfm
Diffstat (limited to 'core/pim/osearch/applnkitem.cpp') (more/less context) (ignore 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
@@ -35,6 +35,8 @@ QString AppLnkItem::toRichText()
35 text += "<b><h3>" + _app->name() + "</b></h3><br>"; 35 text += "<b><h3>" + _app->name() + "</b></h3><br>";
36 text += _app->comment() + "<br>"; 36 text += _app->comment() + "<br>";
37 text += "<br>`" + _app->exec() + "`<br>"; 37 text += "<br>`" + _app->exec() + "`<br>";
38 text += "<br>`" + _app->file() + "`<br>";
39 text += "<br>`" + _app->linkFile() + "`<br>";
38 return text; 40 return text;
39} 41}
40 42
@@ -43,12 +45,8 @@ void AppLnkItem::action( int act )
43 if (!_app->isValid()) qDebug("INVALID"); 45 if (!_app->isValid()) qDebug("INVALID");
44 if (act == 0) _app->execute(); 46 if (act == 0) _app->execute();
45 else if (act == 1){ 47 else if (act == 1){
46 QFileInfo file( _app->file() );
47 qDebug("opening %s in filemanager", file.dirPath().latin1());
48 QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); 48 QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)");
49 e << file.dirPath(); 49 e << _app->linkFile();
50 // QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)");
51 // e << _app->file();
52 } 50 }
53} 51}
54 52