Changeset 31219 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 29, 2010 3:16:51 PM (14 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r31217 r31219 1945 1945 if (details == VMINFO_FULL) 1946 1946 { 1947 rc = guest->COMGETTER(AdditionsV BoxVersion)(guestString.asOutParam());1947 rc = guest->COMGETTER(AdditionsVersion)(guestString.asOutParam()); 1948 1948 if ( SUCCEEDED(rc) 1949 1949 && !guestString.isEmpty()) -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMInformationDlg.cpp
r31217 r31219 472 472 if (!addVersion.isEmpty() && !addRevision.isEmpty()) 473 473 { 474 QString addInfo = console.GetGuest().GetAdditionsV BoxVersion();474 QString addInfo = console.GetGuest().GetAdditionsVersion(); 475 475 addVersionStr = (addInfo.isEmpty() ? "(" : "") 476 476 + addVersion -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r31217 r31219 828 828 if (!fIsAdditionsActive) 829 829 return; 830 /* Check the Guest Additions interfaceversion and warn the user about possible compatibility issues in case if the installed version is outdated. */830 /* Check the Guest Additions version and warn the user about possible compatibility issues in case if the installed version is outdated. */ 831 831 CGuest guest = session().GetConsole().GetGuest(); 832 QString strVersion = guest.GetAdditions InterfaceVersion();832 QString strVersion = guest.GetAdditionsVersion(); 833 833 uint uVersion = strVersion.toUInt(); 834 834 /** @todo r=bird: This isn't want we want! We want the VirtualBox version of the additions, all three numbers. See @bugref{4084}.*/
Note:
See TracChangeset
for help on using the changeset viewer.