phonebookui/pbkcommonui/src/cntactionlauncher.cpp
changeset 53 e6aff7b69165
parent 50 77bc263e1626
--- a/phonebookui/pbkcommonui/src/cntactionlauncher.cpp	Wed Jul 21 11:37:51 2010 +0300
+++ b/phonebookui/pbkcommonui/src/cntactionlauncher.cpp	Fri Jul 23 12:43:48 2010 +0300
@@ -49,6 +49,10 @@
                 this, SLOT(progress(QContactAction::State)));
         executed = mContactAction->invokeAction( aContact, aDetail );
         }
+    else
+        {
+        progress(QContactAction::FinishedWithErrorState);
+        }
     
     return executed;
     }
@@ -71,6 +75,10 @@
                 this, SLOT(progress(QContactAction::State)));
         executed = mContactAction->invokeAction( aContact, aDetail, aParameters );
         }
+    else
+        {
+        progress(QContactAction::FinishedWithErrorState);
+        }
     
     return executed;
     }
@@ -89,6 +97,10 @@
                 this, SLOT(progress(QContactAction::State)));
         executed = mContactAction->invokeAction( aContact, aDetail );
     }
+    else
+    {
+        progress(QContactAction::FinishedWithErrorState);
+    }
     return executed;
 }