VirtualBox

Ignore:
Timestamp:
Jul 12, 2010 8:25:15 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
63576
Message:

Main: Cancelled -> Canceled.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/GuestImpl.cpp

    r30758 r30777  
    565565        Utf8Str errMsg;
    566566
    567         /* Was progress cancelled before? */
    568         BOOL fCancelled;
     567        /* Was progress canceled before? */
     568        BOOL fCanceled;
    569569        ComAssert(!it->second.pProgress.isNull());
    570         if (   SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancelled))
    571             && !fCancelled)
     570        if (   SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled))
     571            && !fCanceled)
    572572        {
    573573            /* Do progress handling. */
     
    643643        }
    644644        else
    645             errMsg = Utf8StrFmt(Guest::tr("Process execution cancelled"));
     645            errMsg = Utf8StrFmt(Guest::tr("Process execution canceled"));
    646646
    647647        if (!it->second.pProgress->getCompleted())
    648648        {
    649649            if (   errMsg.length()
    650                 || fCancelled) /* If cancelled we have to report E_FAIL! */
     650                || fCanceled) /* If canceled we have to report E_FAIL! */
    651651            {
    652652                HRESULT hr2 = it->second.pProgress->notifyComplete(VBOX_E_IPRT_ERROR,
     
    702702        }
    703703
    704         /* Was progress cancelled before? */
    705         BOOL fCancelled;
     704        /* Was progress canceled before? */
     705        BOOL fCanceled;
    706706        ComAssert(!it->second.pProgress.isNull());
    707         if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancelled)) && fCancelled)
     707        if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled)) && fCanceled)
    708708        {
    709709            it->second.pProgress->notifyComplete(VBOX_E_IPRT_ERROR,
    710710                                                 COM_IIDOF(IGuest),
    711711                                                 Guest::getStaticComponentName(),
    712                                                  Guest::tr("The output operation was cancelled"));
     712                                                 Guest::tr("The output operation was canceled"));
    713713        }
    714714        else
     
    775775            LogFlowFunc(("Progress of CID=%u *not* completed, cancelling ...\n", it->first));
    776776
    777             /* Only cancel if not cancelled before! */
    778             BOOL fCancelled;
    779             if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCancelled)) && !fCancelled)
     777            /* Only cancel if not canceled before! */
     778            BOOL fCanceled;
     779            if (SUCCEEDED(it->second.pProgress->COMGETTER(Canceled)(&fCanceled)) && !fCanceled)
    780780                it->second.pProgress->Cancel();
    781781
     
    790790                                                 COM_IIDOF(IGuest),
    791791                                                 Guest::getStaticComponentName(),
    792                                                  Guest::tr("The operation was cancelled because client is shutting down"));
     792                                                 Guest::tr("The operation was canceled because client is shutting down"));
    793793        }
    794794        /*
     
    10211021                 */
    10221022                CallbackMapIter it = getCtrlCallbackContextByID(uContextID);
    1023                 BOOL fCancelled = FALSE;
     1023                BOOL fCanceled = FALSE;
    10241024                if (it != mCallbackMap.end())
    10251025                {
     
    10331033                    if (SUCCEEDED(rc))
    10341034                    {
    1035                         /* Was the operation cancelled by one of the parties? */
    1036                         rc = it->second.pProgress->COMGETTER(Canceled)(&fCancelled);
     1035                        /* Was the operation canceled by one of the parties? */
     1036                        rc = it->second.pProgress->COMGETTER(Canceled)(&fCanceled);
    10371037                        if (FAILED(rc)) throw rc;
    10381038
    1039                         if (!fCancelled)
     1039                        if (!fCanceled)
    10401040                        {
    10411041                            AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     
    10811081                            }
    10821082                        }
    1083                         else /* Operation was cancelled. */
     1083                        else /* Operation was canceled. */
    10841084                            vrc = VERR_CANCELLED;
    10851085                    }
     
    11211121                        {
    11221122                            rc = setError(VBOX_E_IPRT_ERROR,
    1123                                           tr("The execution operation was cancelled"));
     1123                                          tr("The execution operation was canceled"));
    11241124                        }
    11251125                        else if (vrc == VERR_PERMISSION_DENIED)
     
    12041204         * This progress object, compared to the one in executeProgress() above,
    12051205         * is only local and is used to determine whether the operation finished
    1206          * or got cancelled.
     1206         * or got canceled.
    12071207         */
    12081208        ComObjPtr <Progress> progress;
     
    12701270             */
    12711271            CallbackMapIter it = getCtrlCallbackContextByID(uContextID);
    1272             BOOL fCancelled = FALSE;
     1272            BOOL fCanceled = FALSE;
    12731273            if (it != mCallbackMap.end())
    12741274            {
     
    12791279                if (FAILED(rc)) throw rc;
    12801280
    1281                 /* Was the operation cancelled by one of the parties? */
    1282                 rc = it->second.pProgress->COMGETTER(Canceled)(&fCancelled);
     1281                /* Was the operation canceled by one of the parties? */
     1282                rc = it->second.pProgress->COMGETTER(Canceled)(&fCanceled);
    12831283                if (FAILED(rc)) throw rc;
    12841284
    1285                 if (!fCancelled)
     1285                if (!fCanceled)
    12861286                {
    12871287                    BOOL fCompleted;
     
    13121312                        vrc = VERR_TIMEOUT;
    13131313                }
    1314                 else /* Operation was cancelled. */
     1314                else /* Operation was canceled. */
    13151315                {
    13161316                    vrc = VERR_CANCELLED;
     
    13321332                    {
    13331333                        rc = setError(VBOX_E_IPRT_ERROR,
    1334                                       tr("The output operation was cancelled"));
     1334                                      tr("The output operation was canceled"));
    13351335                    }
    13361336                    else
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette