--- a/phoneapp/phoneuiview/inc/cphoneview.h Tue Apr 27 16:37:10 2010 +0300
+++ b/phoneapp/phoneuiview/inc/cphoneview.h Tue May 11 16:13:03 2010 +0300
@@ -28,6 +28,7 @@
class TPhoneCommandParam;
class CEikButtonGroupContainer;
class MPhoneViewObserver;
+class MPhoneViewControllerObserver;
// CLASS DECLARATION
@@ -38,7 +39,7 @@
{
public: // Constructors and destructor
- static CPhoneView* NewL( TRect aRect, CEikButtonGroupContainer& aCba );
+ static CPhoneView* NewL( TRect aRect, CEikButtonGroupContainer& aCba, MPhoneViewControllerObserver* aViewController );
virtual ~CPhoneView();
@@ -208,7 +209,7 @@
private:
- CPhoneView( CEikButtonGroupContainer& aCba );
+ CPhoneView( CEikButtonGroupContainer& aCba, MPhoneViewControllerObserver* aViewController );
void ConstructL( TRect aRect );
@@ -255,7 +256,9 @@
MPhoneViewObserver* iObserver;
- TBool iDialerActivation;
+ TBool iDialerActivation;
+
+ MPhoneViewControllerObserver* iViewControllerObserver;
};
#endif // __CPHONEVIEW_H