- Timestamp:
- Aug 6, 2020 10:35:19 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.cpp
r85613 r85633 1113 1113 }; 1114 1114 1115 /** Polymorphicmenu action extension, used as 'Perform Discard' action class. */1116 class UIActionSimpleManagerCommonPerformDiscard : public UIAction PolymorphicMenu1115 /** Simple menu action extension, used as 'Perform Discard' action class. */ 1116 class UIActionSimpleManagerCommonPerformDiscard : public UIActionSimple 1117 1117 { 1118 1118 Q_OBJECT; … … 1122 1122 /** Constructs action passing @a pParent to the base-class. */ 1123 1123 UIActionSimpleManagerCommonPerformDiscard(UIActionPool *pParent) 1124 : UIActionPolymorphicMenu(pParent, 1125 ":/vm_discard_32px.png", ":/vm_discard_16px.png", 1126 ":/vm_discard_disabled_32px.png", ":/vm_discard_disabled_16px.png") 1127 { 1128 /* Hide menu always: */ 1129 hideMenu(); 1130 } 1124 : UIActionSimple(pParent, 1125 ":/vm_discard_32px.png", ":/vm_discard_16px.png", 1126 ":/vm_discard_disabled_32px.png", ":/vm_discard_disabled_16px.png") 1127 {} 1131 1128 1132 1129 protected:
Note:
See TracChangeset
for help on using the changeset viewer.