VirtualBox

Changeset 13842 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 5, 2008 3:46:01 AM (16 years ago)
Author:
vboxsync
Message:

It's RTuuid not Ruuid.

Location:
trunk/src/VBox
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp

    r13838 r13842  
    242242    void *pvRemote = NULL;
    243243
    244     LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %Ruuid...\n", Address.c_str(), &Uuid));
     244    LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %RTuuid...\n", Address.c_str(), &Uuid));
    245245    PVMREQ pReq;
    246246    vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT,
     
    255255    else
    256256    {
    257         Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %Ruuid, vrc=%Rrc\n", Address.c_str(),
     257        Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %RTuuid, vrc=%Rrc\n", Address.c_str(),
    258258        &Uuid, vrc));
    259259        AssertRC (vrc);
     
    301301
    302302            RTUUID Uuid = aDevice->id();
    303             LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %Ruuid...\n", &Uuid));
     303            LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %RTuuid...\n", &Uuid));
    304304            PVMREQ pReq;
    305305            vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)pRhConfig->pfnDestroyProxyDevice,
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r13838 r13842  
    28132813                machine->COMGETTER(Name)(name.asOutParam());
    28142814                machine->COMGETTER(Id)(uuid.asOutParam());
    2815                 RTPrintf("%s%lS (UUID: %Ruuid)\n",
     2815                RTPrintf("%s%lS (UUID: %RTuuid)\n",
    28162816                         j == 0 ? "Usage:        " : "              ",
    28172817                         name.raw(), &machineIds[j]);
     
    65036503                machine->COMGETTER(Name)(name.asOutParam());
    65046504                machine->COMGETTER(Id)(uuid.asOutParam());
    6505                 RTPrintf("%s%lS (UUID: %Ruuid)\n",
     6505                RTPrintf("%s%lS (UUID: %RTuuid)\n",
    65066506                         j == 0 ? "In use by VMs:        " : "                      ",
    65076507                         name.raw(), &machineIds[j]);
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r13838 r13842  
    20802080    if (!device)
    20812081        return setError (E_INVALIDARG,
    2082             tr ("USB device with UUID {%Ruuid} is not attached to this machine"),
     2082            tr ("USB device with UUID {%RTuuid} is not attached to this machine"),
    20832083            Guid (aId).raw());
    20842084
     
    21112111#else   /* !VBOX_WITH_USB */
    21122112    return setError (E_INVALIDARG,
    2113         tr ("USB device with UUID {%Ruuid} is not attached to this machine"),
     2113        tr ("USB device with UUID {%RTuuid} is not attached to this machine"),
    21142114        Guid (aId).raw());
    21152115#endif  /* !VBOX_WITH_USB */
     
    35293529#ifdef VBOX_WITH_USB
    35303530    Guid Uuid (aId);
    3531     LogFlowThisFunc (("aId={%Ruuid} aError=%p\n", Uuid.raw(), aError));
     3531    LogFlowThisFunc (("aId={%RTuuid} aError=%p\n", Uuid.raw(), aError));
    35323532
    35333533    AutoCaller autoCaller (this);
     
    35413541    while (it != mUSBDevices.end())
    35423542    {
    3543         LogFlowThisFunc (("it={%Ruuid}\n", (*it)->id().raw()));
     3543        LogFlowThisFunc (("it={%RTuuid}\n", (*it)->id().raw()));
    35443544        if ((*it)->id() == Uuid)
    35453545        {
     
    55135513    CheckComRCReturnRC (autoVMCaller.rc());
    55145514
    5515     LogFlowThisFunc (("Proxying USB device '%s' {%Ruuid}...\n",
     5515    LogFlowThisFunc (("Proxying USB device '%s' {%RTuuid}...\n",
    55165516                      Address.raw(), Uuid.ptr()));
    55175517
     
    55345534    if (VBOX_FAILURE (vrc))
    55355535    {
    5536         LogWarningThisFunc (("Failed to create proxy device for '%s' {%Ruuid} (%Rrc)\n",
     5536        LogWarningThisFunc (("Failed to create proxy device for '%s' {%RTuuid} (%Rrc)\n",
    55375537                             Address.raw(), Uuid.ptr(), vrc));
    55385538
     
    56035603        AutoWriteLock alock (that);
    56045604        that->mUSBDevices.push_back (device);
    5605         LogFlowFunc (("Attached device {%Ruuid}\n", device->id().raw()));
     5605        LogFlowFunc (("Attached device {%RTuuid}\n", device->id().raw()));
    56065606
    56075607        /* notify callbacks */
     
    56385638    AssertReturn (PDMR3USBHasHub (mpVM), E_FAIL);
    56395639
    5640     LogFlowThisFunc (("Detaching USB proxy device {%Ruuid}...\n",
     5640    LogFlowThisFunc (("Detaching USB proxy device {%RTuuid}...\n",
    56415641                      (*aIt)->id().raw()));
    56425642
     
    57005700        /* Remove the device from the collection */
    57015701        that->mUSBDevices.erase (*aIt);
    5702         LogFlowFunc (("Detached device {%Ruuid}\n", device->id().raw()));
     5702        LogFlowFunc (("Detached device {%RTuuid}\n", device->id().raw()));
    57035703
    57045704        /* notify callbacks */
  • trunk/src/VBox/Main/ConsoleVRDPServer.cpp

    r13838 r13842  
    13251325    memcpy (rawuuid, ((Guid &)uuid).ptr (), sizeof (rawuuid));
    13261326
    1327     LogFlow(("ConsoleVRDPServer::Authenticate: uuid = %Ruuid, guestJudgement = %d, pszUser = %s, pszPassword = %s, pszDomain = %s, u32ClientId = %d\n",
     1327    LogFlow(("ConsoleVRDPServer::Authenticate: uuid = %RTuuid, guestJudgement = %d, pszUser = %s, pszPassword = %s, pszDomain = %s, u32ClientId = %d\n",
    13281328             rawuuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId));
    13291329
     
    14331433    memcpy (rawuuid, ((Guid &)uuid).ptr (), sizeof (rawuuid));
    14341434
    1435     LogFlow(("ConsoleVRDPServer::AuthDisconnect: uuid = %Ruuid, u32ClientId = %d\n",
     1435    LogFlow(("ConsoleVRDPServer::AuthDisconnect: uuid = %RTuuid, u32ClientId = %d\n",
    14361436             rawuuid, u32ClientId));
    14371437
  • trunk/src/VBox/Main/HardDisk2Impl.cpp

    r13838 r13842  
    631631    }
    632632
    633     LogFlowThisFunc (("m.location='%ls', mm.format=%ls, m.id={%Ruuid}\n",
     633    LogFlowThisFunc (("m.location='%ls', mm.format=%ls, m.id={%RTuuid}\n",
    634634                      m.location.raw(), mm.format.raw(), m.id.raw()));
    635635    LogFlowThisFunc (("m.locationFull='%ls'\n", m.locationFull.raw()));
     
    18281828                return setError (E_FAIL,
    18291829                    tr ("Hard disk '%ls' is attached to a virtual machine "
    1830                         "with UUID {%Ruuid}. No differencing hard disks "
     1830                        "with UUID {%RTuuid}. No differencing hard disks "
    18311831                        "based on it may be created until it is detached"),
    18321832                    m.location.raw(), it->machineId.raw());
     
    21972197
    21982198            /// @todo NEWMEDIA use the default extension for the given VD backend
    2199             location = Utf8StrFmt ("%s{%Ruuid}.vdi", location.raw(), id.raw());
     2199            location = Utf8StrFmt ("%s{%RTuuid}.vdi", location.raw(), id.raw());
    22002200        }
    22012201        else
     
    23692369                {
    23702370                    lastAccessError = Utf8StrFmt (
    2371                         tr ("UUID {%Ruuid} of the hard disk '%ls' "
    2372                             "does not match the value {%Ruuid} stored in the "
     2371                        tr ("UUID {%RTuuid} of the hard disk '%ls' "
     2372                            "does not match the value {%RTuuid} stored in the "
    23732373                            "media registry ('%ls')"),
    23742374                        &uuid, m.locationFull.raw(), m.id.raw(),
     
    24052405                    {
    24062406                        lastAccessError = Utf8StrFmt (
    2407                             tr ("Parent hard disk with UUID {%Ruuid} of the "
     2407                            tr ("Parent hard disk with UUID {%RTuuid} of the "
    24082408                                "hard disk '%ls' is not found in the media "
    24092409                                "registry ('%ls')"),
     
    24412441                    {
    24422442                        lastAccessError = Utf8StrFmt (
    2443                             tr ("Parent UUID {%Ruuid} of the hard disk '%ls' "
    2444                                 "does not match UUID {%Ruuid} of its parent "
     2443                            tr ("Parent UUID {%RTuuid} of the hard disk '%ls' "
     2444                                "does not match UUID {%RTuuid} of its parent "
    24452445                                "hard disk stored in the media registry ('%ls')"),
    24462446                            &uuid, m.locationFull.raw(),
  • trunk/src/VBox/Main/HostImpl.cpp

    r13838 r13842  
    13671367        if (FAILED (coll->FindById (aId, iface.asOutParam())))
    13681368            return setError (E_FAIL,
    1369                 tr ("Host network interface with UUID {%Ruuid} does not exist"),
     1369                tr ("Host network interface with UUID {%RTuuid} does not exist"),
    13701370                Guid (aId).raw());
    13711371
     
    26622662
    26632663        aGUID = Guid (Utf8Str (pCfgGuidString + 1));
    2664         LogFlowFunc (("Network connection GUID = {%Ruuid}\n", aGUID.raw()));
     2664        LogFlowFunc (("Network connection GUID = {%RTuuid}\n", aGUID.raw()));
    26652665        Assert (!aGUID.isEmpty());
    26662666    }
     
    26772677{
    26782678    LogFlowFuncEnter();
    2679     LogFlowFunc (("Network connection GUID = {%Ruuid}\n", aGUID.raw()));
     2679    LogFlowFunc (("Network connection GUID = {%RTuuid}\n", aGUID.raw()));
    26802680
    26812681    AssertReturn (aClient, VERR_INVALID_POINTER);
     
    29422942                        if (RT_FAILURE (vrc)) break;
    29432943
    2944                         LogFlowFunc (("Network connection GUID = {%Ruuid}\n", guid.raw()));
     2944                        LogFlowFunc (("Network connection GUID = {%RTuuid}\n", guid.raw()));
    29452945
    29462946                        /* initialize the object returned to the caller by
     
    29772977        {
    29782978            LogFlowFunc (("RemoveHostNetworkInterface:\n"));
    2979             LogFlowFunc (("Network connection GUID = {%Ruuid}\n", d->guid.raw()));
     2979            LogFlowFunc (("Network connection GUID = {%RTuuid}\n", d->guid.raw()));
    29802980
    29812981            /* write message and parameters */
  • trunk/src/VBox/Main/MachineImpl.cpp

    r13838 r13842  
    577577        /* fetch the current error info */
    578578        mData->mAccessError = com::ErrorInfo();
    579         LogWarning (("Machine {%Ruuid} is inaccessible! [%ls]\n",
     579        LogWarning (("Machine {%RTuuid} is inaccessible! [%ls]\n",
    580580                     mData->mUuid.raw(),
    581581                     mData->mAccessError.getText().raw()));
     
    13211321            /* the default snapshots folder is {UUID}, for backwards
    13221322             * compatibility and to resolve conflicts */
    1323             snapshotFolder = Utf8StrFmt ("{%Ruuid}", mData->mUuid.raw());
     1323            snapshotFolder = Utf8StrFmt ("{%RTuuid}", mData->mUuid.raw());
    13241324        }
    13251325    }
     
    46754675            {
    46764676                throw setError (E_FAIL,
    4677                     tr ("Machine UUID {%Ruuid} in '%ls' doesn't match its "
     4677                    tr ("Machine UUID {%RTuuid} in '%ls' doesn't match its "
    46784678                        "UUID {%s} in the registry file '%ls'"),
    46794679                    id.raw(), mData->mConfigFileFull.raw(),
     
    52965296            if (mType == IsSnapshotMachine)
    52975297                return setError (E_FAIL,
    5298                     tr ("Immutable hard disk '%ls' with UUID {%Ruuid} cannot be "
    5299                         "directly attached to snapshot with UUID {%Ruuid} "
     5298                    tr ("Immutable hard disk '%ls' with UUID {%RTuuid} cannot be "
     5299                        "directly attached to snapshot with UUID {%RTuuid} "
    53005300                        "of the virtual machine '%ls' ('%ls')"),
    53015301                    hd->locationFull().raw(), uuid.raw(),
     
    53045304
    53055305            return setError (E_FAIL,
    5306                 tr ("Immutable hard disk '%ls' with UUID {%Ruuid} cannot be "
     5306                tr ("Immutable hard disk '%ls' with UUID {%RTuuid} cannot be "
    53075307                    "directly attached to the virtual machine '%ls' ('%ls')"),
    53085308                hd->locationFull().raw(), uuid.raw(),
     
    53125312        if (mType != IsSnapshotMachine && hd->children().size() != 0)
    53135313            return setError (E_FAIL,
    5314                 tr ("Hard disk '%ls' with UUID {%Ruuid} cannot be directly "
     5314                tr ("Hard disk '%ls' with UUID {%RTuuid} cannot be directly "
    53155315                    "attached to the virtual machine '%ls' ('%ls') "
    53165316                    "because it has %d differencing child hard disks"),
     
    53255325        {
    53265326            return setError (E_FAIL,
    5327                 tr ("Hard disk '%ls' with UUID {%Ruuid} is already attached "
     5327                tr ("Hard disk '%ls' with UUID {%RTuuid} is already attached "
    53285328                    "to the virtual machine '%ls' ('%ls')"),
    53295329                hd->locationFull().raw(), uuid.raw(),
     
    76737673                     E_FAIL);
    76747674#elif defined(RT_OS_OS2)
    7675     Utf8Str ipcSem = Utf8StrFmt ("\\SEM32\\VBOX\\VM\\{%Ruuid}",
     7675    Utf8Str ipcSem = Utf8StrFmt ("\\SEM32\\VBOX\\VM\\{%RTuuid}",
    76767676                                 aMachine->mData->mUuid.raw());
    76777677    mIPCSemName = ipcSem;
     
    82848284    if (mData->mMachineState == MachineState_Paused)
    82858285    {
    8286         stateFilePath = Utf8StrFmt ("%ls%c{%Ruuid}.sav",
     8286        stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav",
    82878287                                    mUserData->mSnapshotFolderFull.raw(),
    82888288                                    RTPATH_DELIMITER, mData->mUuid.raw());
     
    84358435    /* stateFilePath is null when the machine is not online nor saved */
    84368436    if (takingSnapshotOnline || mData->mMachineState == MachineState_Saved)
    8437         stateFilePath = Utf8StrFmt ("%ls%c{%Ruuid}.sav",
     8437        stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav",
    84388438                                    mUserData->mSnapshotFolderFull.raw(),
    84398439                                    RTPATH_DELIMITER,
     
    1002410024                Utf8Str snapStateFilePath = curSnapshot->stateFilePath();
    1002510025
    10026                 Utf8Str stateFilePath = Utf8StrFmt ("%ls%c{%Ruuid}.sav",
     10026                Utf8Str stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav",
    1002710027                    mUserData->mSnapshotFolderFull.raw(),
    1002810028                    RTPATH_DELIMITER, mData->mUuid.raw());
  • trunk/src/VBox/Main/MediumImpl.cpp

    r13838 r13842  
    942942                                        const Guid &aId)
    943943{
    944     LogFlowThisFunc (("aLocation='%ls', aId={%Ruuid}\n", aLocation, aId.raw()));
     944    LogFlowThisFunc (("aLocation='%ls', aId={%RTuuid}\n", aLocation, aId.raw()));
    945945
    946946    AssertReturn (aVirtualBox, E_INVALIDARG);
     
    10311031    }
    10321032
    1033     LogFlowThisFunc (("m.location='%ls', m.id={%Ruuid}\n",
     1033    LogFlowThisFunc (("m.location='%ls', m.id={%RTuuid}\n",
    10341034                      m.location.raw(), m.id.raw()));
    10351035    LogFlowThisFunc (("m.locationFull='%ls'\n", m.locationFull.raw()));
  • trunk/src/VBox/Main/VirtualBoxImpl.cpp

    r13838 r13842  
    20702070        id.create();
    20712071        SVCHlpClient client;
    2072         vrc = client.create (Utf8StrFmt ("VirtualBox\\SVCHelper\\{%Ruuid}",
     2072        vrc = client.create (Utf8StrFmt ("VirtualBox\\SVCHelper\\{%RTuuid}",
    20732073                                         id.raw()));
    20742074        if (RT_FAILURE (vrc))
     
    22422242        {
    22432243            case DataChanged:
    2244                 LogFlow (("OnMachineDataChange: id={%Ruuid}\n", id.ptr()));
     2244                LogFlow (("OnMachineDataChange: id={%RTuuid}\n", id.ptr()));
    22452245                aCallback->OnMachineDataChange (id);
    22462246                break;
    22472247
    22482248            case StateChanged:
    2249                 LogFlow (("OnMachineStateChange: id={%Ruuid}, state=%d\n",
     2249                LogFlow (("OnMachineStateChange: id={%RTuuid}, state=%d\n",
    22502250                          id.ptr(), state));
    22512251                aCallback->OnMachineStateChange (id, state);
     
    22532253
    22542254            case Registered:
    2255                 LogFlow (("OnMachineRegistered: id={%Ruuid}, registered=%d\n",
     2255                LogFlow (("OnMachineRegistered: id={%RTuuid}, registered=%d\n",
    22562256                          id.ptr(), registered));
    22572257                aCallback->OnMachineRegistered (id, registered);
     
    23332333    void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback)
    23342334    {
    2335         LogFlow (("OnExtraDataChange: machineId={%Ruuid}, key='%ls', val='%ls'\n",
     2335        LogFlow (("OnExtraDataChange: machineId={%RTuuid}, key='%ls', val='%ls'\n",
    23362336                  machineId.ptr(), key.raw(), val.raw()));
    23372337        aCallback->OnExtraDataChange (machineId, key, val);
     
    23672367    void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback)
    23682368    {
    2369         LogFlow (("OnSessionStateChange: machineId={%Ruuid}, sessionState=%d\n",
     2369        LogFlow (("OnSessionStateChange: machineId={%RTuuid}, sessionState=%d\n",
    23702370                  machineId.ptr(), sessionState));
    23712371        aCallback->OnSessionStateChange (machineId, sessionState);
     
    24012401        {
    24022402            case Taken:
    2403                 LogFlow (("OnSnapshotTaken: machineId={%Ruuid}, snapshotId={%Ruuid}\n",
     2403                LogFlow (("OnSnapshotTaken: machineId={%RTuuid}, snapshotId={%RTuuid}\n",
    24042404                          machineId.ptr(), snapshotId.ptr()));
    24052405                aCallback->OnSnapshotTaken (machineId, snapshotId);
     
    24072407
    24082408            case Discarded:
    2409                 LogFlow (("OnSnapshotDiscarded: machineId={%Ruuid}, snapshotId={%Ruuid}\n",
     2409                LogFlow (("OnSnapshotDiscarded: machineId={%RTuuid}, snapshotId={%RTuuid}\n",
    24102410                          machineId.ptr(), snapshotId.ptr()));
    24112411                aCallback->OnSnapshotDiscarded (machineId, snapshotId);
     
    24132413
    24142414            case Changed:
    2415                 LogFlow (("OnSnapshotChange: machineId={%Ruuid}, snapshotId={%Ruuid}\n",
     2415                LogFlow (("OnSnapshotChange: machineId={%RTuuid}, snapshotId={%RTuuid}\n",
    24162416                          machineId.ptr(), snapshotId.ptr()));
    24172417                aCallback->OnSnapshotChange (machineId, snapshotId);
     
    24612461    void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback)
    24622462    {
    2463         LogFlow (("OnGuestPropertyChange: machineId={%Ruuid}, name='%ls', value='%ls', flags='%ls'\n",
     2463        LogFlow (("OnGuestPropertyChange: machineId={%RTuuid}, name='%ls', value='%ls', flags='%ls'\n",
    24642464                  machineId.ptr(), name.raw(), value.raw(), flags.raw()));
    24652465        aCallback->OnGuestPropertyChange (machineId, name, value, flags);
     
    25882588    {
    25892589        setError (E_INVALIDARG,
    2590             tr ("Could not find a registered machine with UUID {%Ruuid}"),
     2590            tr ("Could not find a registered machine with UUID {%RTuuid}"),
    25912591            aId.raw());
    25922592    }
     
    26592659    {
    26602660        if (aId)
    2661             setError (rc, tr ("Could not find a hard disk with UUID {%Ruuid} "
     2661            setError (rc, tr ("Could not find a hard disk with UUID {%RTuuid} "
    26622662                              "in the media registry ('%ls')"),
    26632663                      aId->raw(), mData.mCfgFile.mName.raw());
     
    27302730    {
    27312731        if (aId)
    2732             setError (rc, tr ("Could not find a CD/DVD image with UUID {%Ruuid} "
     2732            setError (rc, tr ("Could not find a CD/DVD image with UUID {%RTuuid} "
    27332733                              "in the media registry ('%ls')"),
    27342734                      aId->raw(), mData.mCfgFile.mName.raw());
     
    28022802    {
    28032803        if (aId)
    2804             setError (rc, tr ("Could not find a floppy image with UUID {%Ruuid} "
     2804            setError (rc, tr ("Could not find a floppy image with UUID {%RTuuid} "
    28052805                              "in the media registry ('%ls')"),
    28062806                      aId->raw(), mData.mCfgFile.mName.raw());
     
    29082908            AutoReadLock mediaLock (hardDisk);
    29092909            aConflict = Utf8StrFmt (
    2910                 tr ("hard disk '%ls' with UUID {%Ruuid}"),
     2910                tr ("hard disk '%ls' with UUID {%RTuuid}"),
    29112911                hardDisk->locationFull().raw(), hardDisk->id().raw());
    29122912            return S_OK;
     
    29222922            AutoReadLock mediaLock (image);
    29232923            aConflict = Utf8StrFmt (
    2924                 tr ("CD/DVD image '%ls' with UUID {%Ruuid}"),
     2924                tr ("CD/DVD image '%ls' with UUID {%RTuuid}"),
    29252925                image->locationFull().raw(), image->id().raw());
    29262926            return S_OK;
     
    29362936            AutoReadLock mediaLock (image);
    29372937            aConflict = Utf8StrFmt (
    2938                 tr ("floppy image '%ls' with UUID {%Ruuid}"),
     2938                tr ("floppy image '%ls' with UUID {%RTuuid}"),
    29392939                image->locationFull().raw(), image->id().raw());
    29402940            return S_OK;
     
    32433243
    32443244            return setError (E_INVALIDARG,
    3245                 tr ("Registered machine with UUID {%Ruuid} ('%ls') already exists"),
     3245                tr ("Registered machine with UUID {%RTuuid} ('%ls') already exists"),
    32463246                aMachine->id().raw(), m->settingsFileFull().raw());
    32473247        }
     
    33063306    {
    33073307        return setError (E_INVALIDARG,
    3308             tr ("Cannot register the hard disk '%ls' with UUID {%Ruuid} "
     3308            tr ("Cannot register the hard disk '%ls' with UUID {%RTuuid} "
    33093309                "because a %s already exists in the media registry ('%ls')"),
    33103310            aHardDisk->locationFull().raw(), aHardDisk->id().raw(),
     
    34213421    {
    34223422        return setError (E_INVALIDARG,
    3423             tr ("Cannot register the CD/DVD image '%ls' with UUID {%Ruuid} "
     3423            tr ("Cannot register the CD/DVD image '%ls' with UUID {%RTuuid} "
    34243424                "because a %s already exists in the media registry ('%ls')"),
    34253425            aImage->locationFull().raw(), aImage->id().raw(),
     
    35223522    {
    35233523        return setError (E_INVALIDARG,
    3524             tr ("Cannot register the floppy image '%ls' with UUID {%Ruuid} "
     3524            tr ("Cannot register the floppy image '%ls' with UUID {%RTuuid} "
    35253525                "because a %s already exists in the media registry ('%ls')"),
    35263526            aImage->locationFull().raw(), aImage->id().raw(),
Note: See TracChangeset for help on using the changeset viewer.

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