Changeset 34254 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 22, 2010 3:48:33 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68002
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r34105 r34254 372 372 { 373 373 vboxProblem().showModalProgressDialog(progressInstall, tr("Install"), 374 mainMachineWindow(), 0 /* No delay*/);374 mainMachineWindow(), 500 /* 500ms delay. */); 375 375 if (progressInstall.GetCanceled()) 376 376 return; … … 382 382 * simply isn't supported yet), so silently fall back to "old" .ISO 383 383 * mounting method. */ 384 if (rc != VBOX_E_NOT_SUPPORTED) 384 if ( !SUCCEEDED_WARNING(rc) 385 && rc != VBOX_E_NOT_SUPPORTED) 386 { 385 387 vboxProblem().cannotUpdateGuestAdditions(progressInstall, mainMachineWindow()); 386 388 387 /* In every case we log the error message in the release log. */ 388 QString strErr = progressInstall.GetErrorInfo().GetText(); 389 if (!strErr.isEmpty()) 390 LogRel(("%s\n", strErr.toLatin1().constData())); 389 /* Log the error message in the release log. */ 390 QString strErr = progressInstall.GetErrorInfo().GetText(); 391 if (!strErr.isEmpty()) 392 LogRel(("%s\n", strErr.toLatin1().constData())); 393 } 391 394 fDoMount = true; /* Since automatic updating failed, fall back to .ISO mounting. */ 392 395 }
Note:
See TracChangeset
for help on using the changeset viewer.