Changeset 25358 in vbox
- Timestamp:
- Dec 14, 2009 12:28:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55959
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r25318 r25358 1755 1755 if (attachment.isOk()) 1756 1756 { 1757 /* Append 'device slot name' with 'device type name' for CD/DVD devices only */ 1758 QString strDeviceType = attachment.GetType() == KDeviceType_DVD ? tr("(CD/DVD)") : QString(); 1759 if (!strDeviceType.isNull()) strDeviceType.prepend(' '); 1757 1760 item += QString (sSectionItemTpl2) 1758 1761 .arg (QString (" ") + 1759 1762 toString (StorageSlot (controller.GetBus(), 1760 1763 attachment.GetPort(), 1761 attachment.GetDevice()))) 1764 attachment.GetDevice())) + 1765 strDeviceType) 1762 1766 .arg (details (medium, false)); 1763 1767 ++ rows;
Note:
See TracChangeset
for help on using the changeset viewer.