phonebookui/phonebookservices/src/cntserviceproviderviewing.cpp
changeset 54 47627ab5d7a4
parent 53 e6aff7b69165
child 61 d30183af6ca6
--- a/phonebookui/phonebookservices/src/cntserviceproviderviewing.cpp	Fri Jul 23 12:43:48 2010 +0300
+++ b/phonebookui/phonebookservices/src/cntserviceproviderviewing.cpp	Thu Aug 05 14:31:09 2010 +0300
@@ -60,18 +60,27 @@
     CNT_EXIT
     }
 
+void CntServiceProviderViewing::openGroup( int aContactId )
+    {
+    CNT_ENTRY
+    mCurrentRequestIndex = setCurrentRequestAsync();
+    mServices.setQuittable(requestInfo().isEmbedded());
+    mServices.launchGroupMemberView( aContactId, *this );
+    CNT_EXIT
+    }
+
 void CntServiceProviderViewing::CompleteServiceAndCloseApp(const QVariant& retValue)
     {
     CNT_ENTRY
     connect(this, SIGNAL(returnValueDelivered()), qApp, SLOT(quit()));
     if ( mCurrentRequestIndex != 0 )
-        {
+    {
         const bool success = completeRequest(mCurrentRequestIndex, retValue);
         if ( !success )
         {
             CNT_LOG_ARGS("Failed to complete highway request.");
         }
         mCurrentRequestIndex = 0;
-        }
+    }
     CNT_EXIT
     }