Changeset 7012 in vbox
- Timestamp:
- Feb 19, 2008 11:13:19 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r6993 r7012 1550 1550 { 1551 1551 CAudioAdapter audio = m.GetAudioAdapter(); 1552 1552 int rows = audio.GetEnabled() ? 3 : 2; 1553 1553 if (audio.GetEnabled()) 1554 1554 item = QString (sSectionItemTpl) 1555 1555 .arg (tr ("Host Driver", "details report (audio)"), 1556 1556 toString (audio.GetAudioDriver())) + 1557 1557 QString (sSectionItemTpl) 1558 1558 .arg (tr ("Controller", "details report (audio)"), 1559 1559 toString (audio.GetAudioController())); 1560 1560 else … … 2256 2256 tr ("PCnet-FAST III (Am79C973)", "NetworkAdapterType"); 2257 2257 networkAdapterTypes [CEnums::NetworkAdapter82540EM] = 2258 tr (" E1000 PROMT Desktop (82540EM)", "NetworkAdapterType");2258 tr ("Intel PRO/1000 MT Desktop (82540EM)", "NetworkAdapterType"); 2259 2259 2260 2260 networkAttachmentTypes [CEnums::NoNetworkAttachment] = … … 2961 2961 2962 2962 /* replace special entities, '&' -- first! */ 2963 2963 text.replace ('&', "&"); 2964 2964 text.replace ('<', "<"); 2965 2966 2965 text.replace ('>', ">"); 2966 text.replace ('\"', """); 2967 2967 2968 2968 /* mark strings in single quotes with color */
Note:
See TracChangeset
for help on using the changeset viewer.