Changeset 74951 in vbox
- Timestamp:
- Oct 19, 2018 4:53:04 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/globals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
r74914 r74951 1179 1179 setName(QApplication::translate("UIActionPool", "&Preferences...", "global preferences window")); 1180 1180 setStatusTip(QApplication::translate("UIActionPool", "Display the global preferences window")); 1181 setToolTip(text().remove('&').remove('.') + 1182 (shortcut().toString().isEmpty() ? "" : QString(" (%1)").arg(shortcut().toString()))); 1181 1183 } 1182 1184 }; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolSelector.cpp
r74950 r74951 197 197 setName(QApplication::translate("UIActionPool", "&Import Appliance...")); 198 198 setStatusTip(QApplication::translate("UIActionPool", "Import an appliance into VirtualBox")); 199 setToolTip(text().remove('&').remove('.') + 200 (shortcut().toString().isEmpty() ? "" : QString(" (%1)").arg(shortcut().toString()))); 199 201 } 200 202 }; … … 232 234 setName(QApplication::translate("UIActionPool", "&Export Appliance...")); 233 235 setStatusTip(QApplication::translate("UIActionPool", "Export one or more VirtualBox virtual machines as an appliance")); 236 setToolTip(text().remove('&').remove('.') + 237 (shortcut().toString().isEmpty() ? "" : QString(" (%1)").arg(shortcut().toString()))); 234 238 } 235 239 }; … … 584 588 setName(QApplication::translate("UIActionPool", "&Add...")); 585 589 setStatusTip(QApplication::translate("UIActionPool", "Add existing virtual machine")); 590 setToolTip(text().remove('&').remove('.') + 591 (shortcut().toString().isEmpty() ? "" : QString(" (%1)").arg(shortcut().toString()))); 586 592 } 587 593 };
Note:
See TracChangeset
for help on using the changeset viewer.