Changeset 28926 in vbox for trunk/src/VBox/Main/GuestImpl.cpp
- Timestamp:
- Apr 30, 2010 10:21:00 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60889
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r28887 r28926 478 478 /** @todo Copy void* buffer contents! */ 479 479 480 /* Was progress canceled before? */ 481 BOOL fCancelled; 482 it->pProgress->COMGETTER(Canceled)(&fCancelled); 483 480 484 /* Do progress handling. */ 481 485 Utf8Str errMsg; … … 487 491 488 492 case PROC_STS_TEN: /* Terminated normally. */ 489 if (!it->pProgress->getCompleted()) 493 if ( !it->pProgress->getCompleted() 494 && !fCancelled) 495 { 490 496 it->pProgress->notifyComplete(S_OK); 497 } 491 498 break; 492 499 … … 542 549 && errMsg.length()) 543 550 { 544 if (!it->pProgress->getCompleted()) 551 if ( !it->pProgress->getCompleted() 552 && !fCancelled) 545 553 { 546 554 it->pProgress->notifyComplete(E_FAIL /** @todo Find a better rc! */, COM_IIDOF(IGuest), … … 719 727 rc = progress->init(static_cast<IGuest*>(this), 720 728 BstrFmt(tr("Executing process")), 721 FALSE);729 TRUE); 722 730 } 723 731 if (FAILED(rc)) return rc;
Note:
See TracChangeset
for help on using the changeset viewer.