Changeset 67616 in vbox
- Timestamp:
- Jun 26, 2017 5:18:42 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116381
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r67615 r67616 1279 1279 Bstr group("group"); 1280 1280 Bstr machineName; 1281 BOOL fInstallGuestAdditions;1282 1281 Bstr fileWithSettings; 1283 1282 unsigned short imageIndex = 1; // applied only to Windows installation … … 1460 1459 CHECK_ERROR_BREAK(unAttended, COMSETTER(ProductKey)(productKey.raw())); 1461 1460 1462 bool fInstallGuestAdditions = vboxAdditionsIsoPath.isNotEmpty(); 1463 CHECK_ERROR_BREAK(unAttended, COMSETTER(InstallGuestAdditions)(fInstallGuestAdditions)); 1461 CHECK_ERROR_BREAK(unAttended, COMSETTER(InstallGuestAdditions)(vboxAdditionsIsoPath.isNotEmpty())); 1464 1462 1465 1463 CHECK_ERROR_BREAK(unAttended, COMSETTER(ImageIndex)(imageIndex)); … … 1534 1532 CHECK_ERROR_BREAK(unAttended, COMGETTER(Group)(group.asOutParam())); 1535 1533 CHECK_ERROR_BREAK(unAttended, COMGETTER(VboxAdditionsIsoPath)(vboxAdditionsIsoPath.asOutParam())); 1536 fInstallGuestAdditions = false;1534 BOOL fInstallGuestAdditions = FALSE; 1537 1535 CHECK_ERROR_BREAK(unAttended, COMGETTER(InstallGuestAdditions)(&fInstallGuestAdditions)); 1538 1536 CHECK_ERROR_BREAK(unAttended, COMGETTER(IsoPath)(isoPath.asOutParam()));
Note:
See TracChangeset
for help on using the changeset viewer.