videocollection/tsrc/stubs/inc/hbmenudata.h
changeset 17 69946d1824c4
parent 15 cf5481c2bc0b
equal deleted inserted replaced
15:cf5481c2bc0b 17:69946d1824c4
    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