Changeset 28561 in vbox
- Timestamp:
- Apr 21, 2010 12:23:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMInformationDlg.cpp
r28558 r28561 574 574 QString addVersionStr; 575 575 if (!addVersion.isEmpty() && !addRevision.isEmpty()) 576 addVersionStr = addVersion + " r" + m.GetGuestPropertyValue("/VirtualBox/GuestAdd/Revision"); 576 { 577 QString addInfo = console.GetGuest().GetAdditionsVersion(); 578 addVersionStr = (addInfo.isEmpty() ? "(" : "") 579 + addVersion 580 + " r" 581 + m.GetGuestPropertyValue("/VirtualBox/GuestAdd/Revision") 582 + (addInfo.isEmpty() ? ")" : ""); 583 } 577 584 else 578 585 addVersionStr = tr ("Not Detected", "guest additions");
Note:
See TracChangeset
for help on using the changeset viewer.