Changeset 8791 in vbox for trunk/src/VBox
- Timestamp:
- May 13, 2008 3:51:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMInformationDlg.cpp
r8790 r8791 400 400 .arg (RT_HIWORD (addVersion)).arg (RT_LOWORD (addVersion)) : 401 401 tr ("Not Detected", "guest additions"); 402 QString osType = console.GetGuest().GetOSTypeId().isNull() ? 403 tr ("Not Detected", "guest os type") : console.GetGuest().GetOSTypeId(); 402 QString osType = console.GetGuest().GetOSTypeId(); 403 if (osType.isNull()) 404 osType = tr ("Not Detected", "guest os type"); 404 405 405 406 result += hdrRow.arg (":/state_running_16px.png").arg (tr ("Runtime Attributes")); … … 452 453 if (hdStat.isNull()) 453 454 { 454 hdStat = composeArticle (tr (" Hard Disks not attached"));455 hdStat = composeArticle (tr ("No Hard Disks")); 455 456 hdStat += paragraph; 456 457 } … … 486 487 if (naStat.isNull()) 487 488 { 488 naStat = composeArticle (tr ("N etwork Adapters not attached"));489 naStat = composeArticle (tr ("No Network Adapters")); 489 490 naStat += paragraph; 490 491 }
Note:
See TracChangeset
for help on using the changeset viewer.