phonebookui/phonebookservices/inc/cntservicecontactcardview.h
changeset 50 77bc263e1626
parent 27 de1630741fbe
child 61 d30183af6ca6
--- a/phonebookui/phonebookservices/inc/cntservicecontactcardview.h	Wed Jul 21 11:09:07 2010 +0300
+++ b/phonebookui/phonebookservices/inc/cntservicecontactcardview.h	Wed Jul 21 11:21:49 2010 +0300
@@ -22,23 +22,23 @@
 #include "cntcontactcardview.h"
 
 class CntServiceHandler;
+class CntAbstractServiceProvider;
 
 class CntServiceContactCardView : public CntContactCardView
 {
     Q_OBJECT
 
-private slots:
-
-    void doShowPreviousView();
-
 public:
-    CntServiceContactCardView(CntServiceHandler *aServiceHandler);
+    CntServiceContactCardView( CntAbstractServiceProvider& aServiceProvider );
     ~CntServiceContactCardView();
 
     int viewId() const { return serviceContactCardView; }
     
+private slots:
+    void closeContactCard();
+
 private:
-    CntServiceHandler *mServiceHandler;
+    CntAbstractServiceProvider& mProvider;
    
 };