Changeset 30777 in vbox for trunk/src/VBox/Main/GuestImpl.cpp
- Timestamp:
- Jul 12, 2010 8:25:15 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63576
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r30758 r30777 565 565 Utf8Str errMsg; 566 566 567 /* Was progress cancel led before? */568 BOOL fCancel led;567 /* Was progress canceled before? */ 568 BOOL fCanceled; 569 569 ComAssert(!it->second.pProgress.isNull()); 570 if ( SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancel led))571 && !fCancel led)570 if ( SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled)) 571 && !fCanceled) 572 572 { 573 573 /* Do progress handling. */ … … 643 643 } 644 644 else 645 errMsg = Utf8StrFmt(Guest::tr("Process execution cancel led"));645 errMsg = Utf8StrFmt(Guest::tr("Process execution canceled")); 646 646 647 647 if (!it->second.pProgress->getCompleted()) 648 648 { 649 649 if ( errMsg.length() 650 || fCancel led) /* If cancelled we have to report E_FAIL! */650 || fCanceled) /* If canceled we have to report E_FAIL! */ 651 651 { 652 652 HRESULT hr2 = it->second.pProgress->notifyComplete(VBOX_E_IPRT_ERROR, … … 702 702 } 703 703 704 /* Was progress cancel led before? */705 BOOL fCancel led;704 /* Was progress canceled before? */ 705 BOOL fCanceled; 706 706 ComAssert(!it->second.pProgress.isNull()); 707 if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancel led)) && fCancelled)707 if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled)) && fCanceled) 708 708 { 709 709 it->second.pProgress->notifyComplete(VBOX_E_IPRT_ERROR, 710 710 COM_IIDOF(IGuest), 711 711 Guest::getStaticComponentName(), 712 Guest::tr("The output operation was cancel led"));712 Guest::tr("The output operation was canceled")); 713 713 } 714 714 else … … 775 775 LogFlowFunc(("Progress of CID=%u *not* completed, cancelling ...\n", it->first)); 776 776 777 /* Only cancel if not cancel led before! */778 BOOL fCancel led;779 if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancel led)) && !fCancelled)777 /* Only cancel if not canceled before! */ 778 BOOL fCanceled; 779 if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled)) && !fCanceled) 780 780 it->second.pProgress->Cancel(); 781 781 … … 790 790 COM_IIDOF(IGuest), 791 791 Guest::getStaticComponentName(), 792 Guest::tr("The operation was cancel led because client is shutting down"));792 Guest::tr("The operation was canceled because client is shutting down")); 793 793 } 794 794 /* … … 1021 1021 */ 1022 1022 CallbackMapIter it = getCtrlCallbackContextByID(uContextID); 1023 BOOL fCancel led = FALSE;1023 BOOL fCanceled = FALSE; 1024 1024 if (it != mCallbackMap.end()) 1025 1025 { … … 1033 1033 if (SUCCEEDED(rc)) 1034 1034 { 1035 /* Was the operation cancel led by one of the parties? */1036 rc = it->second.pProgress->COMGETTER(Canceled)(&fCancel led);1035 /* Was the operation canceled by one of the parties? */ 1036 rc = it->second.pProgress->COMGETTER(Canceled)(&fCanceled); 1037 1037 if (FAILED(rc)) throw rc; 1038 1038 1039 if (!fCancel led)1039 if (!fCanceled) 1040 1040 { 1041 1041 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); … … 1081 1081 } 1082 1082 } 1083 else /* Operation was cancel led. */1083 else /* Operation was canceled. */ 1084 1084 vrc = VERR_CANCELLED; 1085 1085 } … … 1121 1121 { 1122 1122 rc = setError(VBOX_E_IPRT_ERROR, 1123 tr("The execution operation was cancel led"));1123 tr("The execution operation was canceled")); 1124 1124 } 1125 1125 else if (vrc == VERR_PERMISSION_DENIED) … … 1204 1204 * This progress object, compared to the one in executeProgress() above, 1205 1205 * is only local and is used to determine whether the operation finished 1206 * or got cancel led.1206 * or got canceled. 1207 1207 */ 1208 1208 ComObjPtr <Progress> progress; … … 1270 1270 */ 1271 1271 CallbackMapIter it = getCtrlCallbackContextByID(uContextID); 1272 BOOL fCancel led = FALSE;1272 BOOL fCanceled = FALSE; 1273 1273 if (it != mCallbackMap.end()) 1274 1274 { … … 1279 1279 if (FAILED(rc)) throw rc; 1280 1280 1281 /* Was the operation cancel led by one of the parties? */1282 rc = it->second.pProgress->COMGETTER(Canceled)(&fCancel led);1281 /* Was the operation canceled by one of the parties? */ 1282 rc = it->second.pProgress->COMGETTER(Canceled)(&fCanceled); 1283 1283 if (FAILED(rc)) throw rc; 1284 1284 1285 if (!fCancel led)1285 if (!fCanceled) 1286 1286 { 1287 1287 BOOL fCompleted; … … 1312 1312 vrc = VERR_TIMEOUT; 1313 1313 } 1314 else /* Operation was cancel led. */1314 else /* Operation was canceled. */ 1315 1315 { 1316 1316 vrc = VERR_CANCELLED; … … 1332 1332 { 1333 1333 rc = setError(VBOX_E_IPRT_ERROR, 1334 tr("The output operation was cancel led"));1334 tr("The output operation was canceled")); 1335 1335 } 1336 1336 else
Note:
See TracChangeset
for help on using the changeset viewer.