Changeset 8673 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 7, 2008 4:59:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMInformationDlg.ui.h
r8667 r8673 483 483 QString addInfo = console.GetGuest().GetAdditionsVersion(); 484 484 uint addVersion = addInfo.toUInt(); 485 QString addVerisonStr = QString ("%1.%2") 486 .arg (RT_HIWORD (addVersion)).arg (RT_LOWORD (addVersion)); 485 QString addVerisonStr = !addInfo.isNull() ? QString ("%1.%2") 486 .arg (RT_HIWORD (addVersion)).arg (RT_LOWORD (addVersion)) : 487 tr ("Not detected", "information dialog (guest additions version)"); 487 488 488 489 result += hdrRow.arg ("state_running_16px.png").arg (tr ("Runtime Attributes"));
Note:
See TracChangeset
for help on using the changeset viewer.