diff -r 863223ea6961 -r a0f57508af73 ui/viewmanagement/statehandler/inc/glxfullscreenstate.h --- a/ui/viewmanagement/statehandler/inc/glxfullscreenstate.h Fri Jun 25 15:41:33 2010 +0530 +++ b/ui/viewmanagement/statehandler/inc/glxfullscreenstate.h Sat Jul 10 00:59:39 2010 +0530 @@ -21,11 +21,12 @@ #define GLXFULLSCREENSTATE_H #include +class GlxStateManager; class GlxFullScreenState : public GlxState { public : - GlxFullScreenState(GlxState *preState = NULL); + GlxFullScreenState( GlxStateManager *stateManager, GlxState *preState = NULL ); int state() const { return (int) mState; } /* * This Function set the internal state of full screen state @@ -49,6 +50,7 @@ private: FullScreenState mState; + GlxStateManager *mStateManager; };