videocollection/tsrc/stubs/inc/hbview.h
changeset 35 3738fe97f027
parent 34 bbb98528c666
child 36 8aed59de29f9
--- a/videocollection/tsrc/stubs/inc/hbview.h	Thu Apr 01 23:22:15 2010 +0300
+++ b/videocollection/tsrc/stubs/inc/hbview.h	Thu Apr 01 23:32:44 2010 +0300
@@ -22,6 +22,7 @@
 #include <QGraphicsWidget>
 #include "hbinstance.h"
 #include "hbtoolbar.h"
+#include "hbeffect.h"
 
 class HbView : public QGraphicsWidget
 {
@@ -30,7 +31,7 @@
 
 public:
 
-    HbView(QGraphicsItem *parent = 0) : QGraphicsWidget(parent), mToolBar(0)
+    HbView(QGraphicsItem *parent = 0) : QGraphicsWidget(parent), mToolBar(0), mNavigationAction(0)
     {
         Q_UNUSED(parent);
     }
@@ -63,9 +64,12 @@
     
     void setNavigationAction(HbAction *action)
     {
-        Q_UNUSED(action);
+        mNavigationAction = action;
     }
     
+    
+    HbAction *mNavigationAction;
+    
     mutable HbToolBar* mToolBar;
 };