contentstorage/caclient/src/cahandlerproxy.cpp
changeset 116 305818acdca4
parent 99 7aaf39b772ac
child 127 7b66bc3c6dc9
--- a/contentstorage/caclient/src/cahandlerproxy.cpp	Wed Aug 18 10:39:24 2010 +0300
+++ b/contentstorage/caclient/src/cahandlerproxy.cpp	Mon Sep 13 13:26:33 2010 +0300
@@ -52,16 +52,19 @@
   Forwards execute request to an appropriate handler if found otherwise ignores the request.
   \param entry Subject for the requested command.
   \param commandName Name of the command to be executed.
+  \param receiver QObject class with slot.
+  \param member Slot from QObject class.
   \retval KErrNone on succes, error code otherwise.
   \sa e32err.h for KErrNone definition.
 */
-int CaHandlerProxy::execute(const CaEntry &entry, const QString &commandName)
+int CaHandlerProxy::execute(const CaEntry &entry, const QString &commandName,
+        QObject* receiver, const char* member)
 {
     CaHandler *const handler = getHandler(entry, commandName);
     int result = -1;
 
     if (handler) {
-            result = handler->execute(entry, commandName);
+            result = handler->execute(entry, commandName, receiver, member);
     }
     return result;
 }