Changeset 34398 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 26, 2010 4:24:58 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68169
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r34338 r34398 1450 1450 ComPtr<IProgress> progress; 1451 1451 CHECK_ERROR(guest, UpdateGuestAdditions(Bstr(Utf8Source).raw(), 1452 0 /* Flags, not used. */,1452 AdditionsUpdateFlag_None, 1453 1453 progress.asOutParam())); 1454 1454 if (FAILED(rc)) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r34254 r34398 364 364 CGuest guest = session().GetConsole().GetGuest(); 365 365 #ifdef DEBUG_andy 366 CProgress progressInstall = guest.UpdateGuestAdditions("c:\\Downloads\\VBoxGuestAdditions_3.2.8.iso", 0); 366 CProgress progressInstall = guest.UpdateGuestAdditions("c:\\Downloads\\VBoxGuestAdditions_3.2.8.iso", 367 AdditionsUpdateFlag_WaitForUpdateStartOnly); 367 368 #else 368 CProgress progressInstall = guest.UpdateGuestAdditions(strSource, 0 /* Flags, not used. */); 369 /* Since we are going to show a modal progress dialog we don't want to wait for the whole 370 * update progress being complete - the user might need to interact with the VM to confirm (WHQL) 371 * popups - instead we only wait until the actual update process was started. */ 372 CProgress progressInstall = guest.UpdateGuestAdditions(strSource, 373 AdditionsUpdateFlag_WaitForUpdateStartOnly); 369 374 #endif 370 375 bool fResult = guest.isOk();
Note:
See TracChangeset
for help on using the changeset viewer.