videocollection/tsrc/stubs/inc/hbmenudata.h
changeset 36 8aed59de29f9
parent 34 bbb98528c666
equal deleted inserted replaced
35:3738fe97f027 36:8aed59de29f9
    24 class HbMenuData
    24 class HbMenuData
    25 {
    25 {
    26 public: // methods
    26 public: // methods
    27     static void reset()
    27     static void reset()
    28     {
    28     {
    29         delete mMenuAction;
    29         mMenuAction = 0;
    30         delete mActiveAction;
       
    31         mEnabledSetted = false;
    30         mEnabledSetted = false;
    32         mReturnEmptyActionList = false;
    31         mReturnEmptyActionList = false;
    33         mExecPoint = QPointF();
    32         mExecPoint = QPointF();
    34     }
    33     }
    35     
    34     
    36 public: // data
    35 public: // data
    37     static HbAction *mMenuAction;
    36     static HbAction *mMenuAction;
    38     static HbAction *mActiveAction;
       
    39     static bool mEnabledSetted;
    37     static bool mEnabledSetted;
    40     static bool mReturnEmptyActionList;
    38     static bool mReturnEmptyActionList;
    41     static QPointF mExecPoint;
    39     static QPointF mExecPoint;
    42 };
    40 };
    43 
    41