summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnkitem.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/applnkitem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/applnkitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/osearch/applnkitem.cpp b/core/pim/osearch/applnkitem.cpp
index ca54eef..f9ff565 100644
--- a/core/pim/osearch/applnkitem.cpp
+++ b/core/pim/osearch/applnkitem.cpp
@@ -41,13 +41,13 @@ QString AppLnkItem::toRichText()
41 text += "<br>`" + _app->linkFile() + "`<br>"; 41 text += "<br>`" + _app->linkFile() + "`<br>";
42 return text; 42 return text;
43} 43}
44 44
45void AppLnkItem::action( int act ) 45void AppLnkItem::action( int act )
46{ 46{
47 if (!_app->isValid()) Opie::Core::odebug << "INVALID" << oendl; 47 if (!_app->isValid()) odebug << "INVALID" << oendl;
48 if (act == 0) _app->execute(); 48 if (act == 0) _app->execute();
49 else if (act == 1){ 49 else if (act == 1){
50 QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); 50 QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)");
51 e << _app->linkFile(); 51 e << _app->linkFile();
52 } 52 }
53} 53}