Changeset 13842 in vbox for trunk/src/VBox
- Timestamp:
- Nov 5, 2008 3:46:01 AM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp
r13838 r13842 242 242 void *pvRemote = NULL; 243 243 244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %R uuid...\n", Address.c_str(), &Uuid));244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %RTuuid...\n", Address.c_str(), &Uuid)); 245 245 PVMREQ pReq; 246 246 vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, … … 255 255 else 256 256 { 257 Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %R uuid, vrc=%Rrc\n", Address.c_str(),257 Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %RTuuid, vrc=%Rrc\n", Address.c_str(), 258 258 &Uuid, vrc)); 259 259 AssertRC (vrc); … … 301 301 302 302 RTUUID Uuid = aDevice->id(); 303 LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %R uuid...\n", &Uuid));303 LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %RTuuid...\n", &Uuid)); 304 304 PVMREQ pReq; 305 305 vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)pRhConfig->pfnDestroyProxyDevice, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r13838 r13842 2813 2813 machine->COMGETTER(Name)(name.asOutParam()); 2814 2814 machine->COMGETTER(Id)(uuid.asOutParam()); 2815 RTPrintf("%s%lS (UUID: %R uuid)\n",2815 RTPrintf("%s%lS (UUID: %RTuuid)\n", 2816 2816 j == 0 ? "Usage: " : " ", 2817 2817 name.raw(), &machineIds[j]); … … 6503 6503 machine->COMGETTER(Name)(name.asOutParam()); 6504 6504 machine->COMGETTER(Id)(uuid.asOutParam()); 6505 RTPrintf("%s%lS (UUID: %R uuid)\n",6505 RTPrintf("%s%lS (UUID: %RTuuid)\n", 6506 6506 j == 0 ? "In use by VMs: " : " ", 6507 6507 name.raw(), &machineIds[j]); -
trunk/src/VBox/Main/ConsoleImpl.cpp
r13838 r13842 2080 2080 if (!device) 2081 2081 return setError (E_INVALIDARG, 2082 tr ("USB device with UUID {%R uuid} is not attached to this machine"),2082 tr ("USB device with UUID {%RTuuid} is not attached to this machine"), 2083 2083 Guid (aId).raw()); 2084 2084 … … 2111 2111 #else /* !VBOX_WITH_USB */ 2112 2112 return setError (E_INVALIDARG, 2113 tr ("USB device with UUID {%R uuid} is not attached to this machine"),2113 tr ("USB device with UUID {%RTuuid} is not attached to this machine"), 2114 2114 Guid (aId).raw()); 2115 2115 #endif /* !VBOX_WITH_USB */ … … 3529 3529 #ifdef VBOX_WITH_USB 3530 3530 Guid Uuid (aId); 3531 LogFlowThisFunc (("aId={%R uuid} aError=%p\n", Uuid.raw(), aError));3531 LogFlowThisFunc (("aId={%RTuuid} aError=%p\n", Uuid.raw(), aError)); 3532 3532 3533 3533 AutoCaller autoCaller (this); … … 3541 3541 while (it != mUSBDevices.end()) 3542 3542 { 3543 LogFlowThisFunc (("it={%R uuid}\n", (*it)->id().raw()));3543 LogFlowThisFunc (("it={%RTuuid}\n", (*it)->id().raw())); 3544 3544 if ((*it)->id() == Uuid) 3545 3545 { … … 5513 5513 CheckComRCReturnRC (autoVMCaller.rc()); 5514 5514 5515 LogFlowThisFunc (("Proxying USB device '%s' {%R uuid}...\n",5515 LogFlowThisFunc (("Proxying USB device '%s' {%RTuuid}...\n", 5516 5516 Address.raw(), Uuid.ptr())); 5517 5517 … … 5534 5534 if (VBOX_FAILURE (vrc)) 5535 5535 { 5536 LogWarningThisFunc (("Failed to create proxy device for '%s' {%R uuid} (%Rrc)\n",5536 LogWarningThisFunc (("Failed to create proxy device for '%s' {%RTuuid} (%Rrc)\n", 5537 5537 Address.raw(), Uuid.ptr(), vrc)); 5538 5538 … … 5603 5603 AutoWriteLock alock (that); 5604 5604 that->mUSBDevices.push_back (device); 5605 LogFlowFunc (("Attached device {%R uuid}\n", device->id().raw()));5605 LogFlowFunc (("Attached device {%RTuuid}\n", device->id().raw())); 5606 5606 5607 5607 /* notify callbacks */ … … 5638 5638 AssertReturn (PDMR3USBHasHub (mpVM), E_FAIL); 5639 5639 5640 LogFlowThisFunc (("Detaching USB proxy device {%R uuid}...\n",5640 LogFlowThisFunc (("Detaching USB proxy device {%RTuuid}...\n", 5641 5641 (*aIt)->id().raw())); 5642 5642 … … 5700 5700 /* Remove the device from the collection */ 5701 5701 that->mUSBDevices.erase (*aIt); 5702 LogFlowFunc (("Detached device {%R uuid}\n", device->id().raw()));5702 LogFlowFunc (("Detached device {%RTuuid}\n", device->id().raw())); 5703 5703 5704 5704 /* notify callbacks */ -
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r13838 r13842 1325 1325 memcpy (rawuuid, ((Guid &)uuid).ptr (), sizeof (rawuuid)); 1326 1326 1327 LogFlow(("ConsoleVRDPServer::Authenticate: uuid = %R uuid, 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", 1328 1328 rawuuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId)); 1329 1329 … … 1433 1433 memcpy (rawuuid, ((Guid &)uuid).ptr (), sizeof (rawuuid)); 1434 1434 1435 LogFlow(("ConsoleVRDPServer::AuthDisconnect: uuid = %R uuid, u32ClientId = %d\n",1435 LogFlow(("ConsoleVRDPServer::AuthDisconnect: uuid = %RTuuid, u32ClientId = %d\n", 1436 1436 rawuuid, u32ClientId)); 1437 1437 -
trunk/src/VBox/Main/HardDisk2Impl.cpp
r13838 r13842 631 631 } 632 632 633 LogFlowThisFunc (("m.location='%ls', mm.format=%ls, m.id={%R uuid}\n",633 LogFlowThisFunc (("m.location='%ls', mm.format=%ls, m.id={%RTuuid}\n", 634 634 m.location.raw(), mm.format.raw(), m.id.raw())); 635 635 LogFlowThisFunc (("m.locationFull='%ls'\n", m.locationFull.raw())); … … 1828 1828 return setError (E_FAIL, 1829 1829 tr ("Hard disk '%ls' is attached to a virtual machine " 1830 "with UUID {%R uuid}. No differencing hard disks "1830 "with UUID {%RTuuid}. No differencing hard disks " 1831 1831 "based on it may be created until it is detached"), 1832 1832 m.location.raw(), it->machineId.raw()); … … 2197 2197 2198 2198 /// @todo NEWMEDIA use the default extension for the given VD backend 2199 location = Utf8StrFmt ("%s{%R uuid}.vdi", location.raw(), id.raw());2199 location = Utf8StrFmt ("%s{%RTuuid}.vdi", location.raw(), id.raw()); 2200 2200 } 2201 2201 else … … 2369 2369 { 2370 2370 lastAccessError = Utf8StrFmt ( 2371 tr ("UUID {%R uuid} of the hard disk '%ls' "2372 "does not match the value {%R uuid} stored in the "2371 tr ("UUID {%RTuuid} of the hard disk '%ls' " 2372 "does not match the value {%RTuuid} stored in the " 2373 2373 "media registry ('%ls')"), 2374 2374 &uuid, m.locationFull.raw(), m.id.raw(), … … 2405 2405 { 2406 2406 lastAccessError = Utf8StrFmt ( 2407 tr ("Parent hard disk with UUID {%R uuid} of the "2407 tr ("Parent hard disk with UUID {%RTuuid} of the " 2408 2408 "hard disk '%ls' is not found in the media " 2409 2409 "registry ('%ls')"), … … 2441 2441 { 2442 2442 lastAccessError = Utf8StrFmt ( 2443 tr ("Parent UUID {%R uuid} of the hard disk '%ls' "2444 "does not match UUID {%R uuid} of its parent "2443 tr ("Parent UUID {%RTuuid} of the hard disk '%ls' " 2444 "does not match UUID {%RTuuid} of its parent " 2445 2445 "hard disk stored in the media registry ('%ls')"), 2446 2446 &uuid, m.locationFull.raw(), -
trunk/src/VBox/Main/HostImpl.cpp
r13838 r13842 1367 1367 if (FAILED (coll->FindById (aId, iface.asOutParam()))) 1368 1368 return setError (E_FAIL, 1369 tr ("Host network interface with UUID {%R uuid} does not exist"),1369 tr ("Host network interface with UUID {%RTuuid} does not exist"), 1370 1370 Guid (aId).raw()); 1371 1371 … … 2662 2662 2663 2663 aGUID = Guid (Utf8Str (pCfgGuidString + 1)); 2664 LogFlowFunc (("Network connection GUID = {%R uuid}\n", aGUID.raw()));2664 LogFlowFunc (("Network connection GUID = {%RTuuid}\n", aGUID.raw())); 2665 2665 Assert (!aGUID.isEmpty()); 2666 2666 } … … 2677 2677 { 2678 2678 LogFlowFuncEnter(); 2679 LogFlowFunc (("Network connection GUID = {%R uuid}\n", aGUID.raw()));2679 LogFlowFunc (("Network connection GUID = {%RTuuid}\n", aGUID.raw())); 2680 2680 2681 2681 AssertReturn (aClient, VERR_INVALID_POINTER); … … 2942 2942 if (RT_FAILURE (vrc)) break; 2943 2943 2944 LogFlowFunc (("Network connection GUID = {%R uuid}\n", guid.raw()));2944 LogFlowFunc (("Network connection GUID = {%RTuuid}\n", guid.raw())); 2945 2945 2946 2946 /* initialize the object returned to the caller by … … 2977 2977 { 2978 2978 LogFlowFunc (("RemoveHostNetworkInterface:\n")); 2979 LogFlowFunc (("Network connection GUID = {%R uuid}\n", d->guid.raw()));2979 LogFlowFunc (("Network connection GUID = {%RTuuid}\n", d->guid.raw())); 2980 2980 2981 2981 /* write message and parameters */ -
trunk/src/VBox/Main/MachineImpl.cpp
r13838 r13842 577 577 /* fetch the current error info */ 578 578 mData->mAccessError = com::ErrorInfo(); 579 LogWarning (("Machine {%R uuid} is inaccessible! [%ls]\n",579 LogWarning (("Machine {%RTuuid} is inaccessible! [%ls]\n", 580 580 mData->mUuid.raw(), 581 581 mData->mAccessError.getText().raw())); … … 1321 1321 /* the default snapshots folder is {UUID}, for backwards 1322 1322 * compatibility and to resolve conflicts */ 1323 snapshotFolder = Utf8StrFmt ("{%R uuid}", mData->mUuid.raw());1323 snapshotFolder = Utf8StrFmt ("{%RTuuid}", mData->mUuid.raw()); 1324 1324 } 1325 1325 } … … 4675 4675 { 4676 4676 throw setError (E_FAIL, 4677 tr ("Machine UUID {%R uuid} in '%ls' doesn't match its "4677 tr ("Machine UUID {%RTuuid} in '%ls' doesn't match its " 4678 4678 "UUID {%s} in the registry file '%ls'"), 4679 4679 id.raw(), mData->mConfigFileFull.raw(), … … 5296 5296 if (mType == IsSnapshotMachine) 5297 5297 return setError (E_FAIL, 5298 tr ("Immutable hard disk '%ls' with UUID {%R uuid} cannot be "5299 "directly attached to snapshot with UUID {%R uuid} "5298 tr ("Immutable hard disk '%ls' with UUID {%RTuuid} cannot be " 5299 "directly attached to snapshot with UUID {%RTuuid} " 5300 5300 "of the virtual machine '%ls' ('%ls')"), 5301 5301 hd->locationFull().raw(), uuid.raw(), … … 5304 5304 5305 5305 return setError (E_FAIL, 5306 tr ("Immutable hard disk '%ls' with UUID {%R uuid} cannot be "5306 tr ("Immutable hard disk '%ls' with UUID {%RTuuid} cannot be " 5307 5307 "directly attached to the virtual machine '%ls' ('%ls')"), 5308 5308 hd->locationFull().raw(), uuid.raw(), … … 5312 5312 if (mType != IsSnapshotMachine && hd->children().size() != 0) 5313 5313 return setError (E_FAIL, 5314 tr ("Hard disk '%ls' with UUID {%R uuid} cannot be directly "5314 tr ("Hard disk '%ls' with UUID {%RTuuid} cannot be directly " 5315 5315 "attached to the virtual machine '%ls' ('%ls') " 5316 5316 "because it has %d differencing child hard disks"), … … 5325 5325 { 5326 5326 return setError (E_FAIL, 5327 tr ("Hard disk '%ls' with UUID {%R uuid} is already attached "5327 tr ("Hard disk '%ls' with UUID {%RTuuid} is already attached " 5328 5328 "to the virtual machine '%ls' ('%ls')"), 5329 5329 hd->locationFull().raw(), uuid.raw(), … … 7673 7673 E_FAIL); 7674 7674 #elif defined(RT_OS_OS2) 7675 Utf8Str ipcSem = Utf8StrFmt ("\\SEM32\\VBOX\\VM\\{%R uuid}",7675 Utf8Str ipcSem = Utf8StrFmt ("\\SEM32\\VBOX\\VM\\{%RTuuid}", 7676 7676 aMachine->mData->mUuid.raw()); 7677 7677 mIPCSemName = ipcSem; … … 8284 8284 if (mData->mMachineState == MachineState_Paused) 8285 8285 { 8286 stateFilePath = Utf8StrFmt ("%ls%c{%R uuid}.sav",8286 stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav", 8287 8287 mUserData->mSnapshotFolderFull.raw(), 8288 8288 RTPATH_DELIMITER, mData->mUuid.raw()); … … 8435 8435 /* stateFilePath is null when the machine is not online nor saved */ 8436 8436 if (takingSnapshotOnline || mData->mMachineState == MachineState_Saved) 8437 stateFilePath = Utf8StrFmt ("%ls%c{%R uuid}.sav",8437 stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav", 8438 8438 mUserData->mSnapshotFolderFull.raw(), 8439 8439 RTPATH_DELIMITER, … … 10024 10024 Utf8Str snapStateFilePath = curSnapshot->stateFilePath(); 10025 10025 10026 Utf8Str stateFilePath = Utf8StrFmt ("%ls%c{%R uuid}.sav",10026 Utf8Str stateFilePath = Utf8StrFmt ("%ls%c{%RTuuid}.sav", 10027 10027 mUserData->mSnapshotFolderFull.raw(), 10028 10028 RTPATH_DELIMITER, mData->mUuid.raw()); -
trunk/src/VBox/Main/MediumImpl.cpp
r13838 r13842 942 942 const Guid &aId) 943 943 { 944 LogFlowThisFunc (("aLocation='%ls', aId={%R uuid}\n", aLocation, aId.raw()));944 LogFlowThisFunc (("aLocation='%ls', aId={%RTuuid}\n", aLocation, aId.raw())); 945 945 946 946 AssertReturn (aVirtualBox, E_INVALIDARG); … … 1031 1031 } 1032 1032 1033 LogFlowThisFunc (("m.location='%ls', m.id={%R uuid}\n",1033 LogFlowThisFunc (("m.location='%ls', m.id={%RTuuid}\n", 1034 1034 m.location.raw(), m.id.raw())); 1035 1035 LogFlowThisFunc (("m.locationFull='%ls'\n", m.locationFull.raw())); -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r13838 r13842 2070 2070 id.create(); 2071 2071 SVCHlpClient client; 2072 vrc = client.create (Utf8StrFmt ("VirtualBox\\SVCHelper\\{%R uuid}",2072 vrc = client.create (Utf8StrFmt ("VirtualBox\\SVCHelper\\{%RTuuid}", 2073 2073 id.raw())); 2074 2074 if (RT_FAILURE (vrc)) … … 2242 2242 { 2243 2243 case DataChanged: 2244 LogFlow (("OnMachineDataChange: id={%R uuid}\n", id.ptr()));2244 LogFlow (("OnMachineDataChange: id={%RTuuid}\n", id.ptr())); 2245 2245 aCallback->OnMachineDataChange (id); 2246 2246 break; 2247 2247 2248 2248 case StateChanged: 2249 LogFlow (("OnMachineStateChange: id={%R uuid}, state=%d\n",2249 LogFlow (("OnMachineStateChange: id={%RTuuid}, state=%d\n", 2250 2250 id.ptr(), state)); 2251 2251 aCallback->OnMachineStateChange (id, state); … … 2253 2253 2254 2254 case Registered: 2255 LogFlow (("OnMachineRegistered: id={%R uuid}, registered=%d\n",2255 LogFlow (("OnMachineRegistered: id={%RTuuid}, registered=%d\n", 2256 2256 id.ptr(), registered)); 2257 2257 aCallback->OnMachineRegistered (id, registered); … … 2333 2333 void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback) 2334 2334 { 2335 LogFlow (("OnExtraDataChange: machineId={%R uuid}, key='%ls', val='%ls'\n",2335 LogFlow (("OnExtraDataChange: machineId={%RTuuid}, key='%ls', val='%ls'\n", 2336 2336 machineId.ptr(), key.raw(), val.raw())); 2337 2337 aCallback->OnExtraDataChange (machineId, key, val); … … 2367 2367 void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback) 2368 2368 { 2369 LogFlow (("OnSessionStateChange: machineId={%R uuid}, sessionState=%d\n",2369 LogFlow (("OnSessionStateChange: machineId={%RTuuid}, sessionState=%d\n", 2370 2370 machineId.ptr(), sessionState)); 2371 2371 aCallback->OnSessionStateChange (machineId, sessionState); … … 2401 2401 { 2402 2402 case Taken: 2403 LogFlow (("OnSnapshotTaken: machineId={%R uuid}, snapshotId={%Ruuid}\n",2403 LogFlow (("OnSnapshotTaken: machineId={%RTuuid}, snapshotId={%RTuuid}\n", 2404 2404 machineId.ptr(), snapshotId.ptr())); 2405 2405 aCallback->OnSnapshotTaken (machineId, snapshotId); … … 2407 2407 2408 2408 case Discarded: 2409 LogFlow (("OnSnapshotDiscarded: machineId={%R uuid}, snapshotId={%Ruuid}\n",2409 LogFlow (("OnSnapshotDiscarded: machineId={%RTuuid}, snapshotId={%RTuuid}\n", 2410 2410 machineId.ptr(), snapshotId.ptr())); 2411 2411 aCallback->OnSnapshotDiscarded (machineId, snapshotId); … … 2413 2413 2414 2414 case Changed: 2415 LogFlow (("OnSnapshotChange: machineId={%R uuid}, snapshotId={%Ruuid}\n",2415 LogFlow (("OnSnapshotChange: machineId={%RTuuid}, snapshotId={%RTuuid}\n", 2416 2416 machineId.ptr(), snapshotId.ptr())); 2417 2417 aCallback->OnSnapshotChange (machineId, snapshotId); … … 2461 2461 void handleCallback (const ComPtr <IVirtualBoxCallback> &aCallback) 2462 2462 { 2463 LogFlow (("OnGuestPropertyChange: machineId={%R uuid}, name='%ls', value='%ls', flags='%ls'\n",2463 LogFlow (("OnGuestPropertyChange: machineId={%RTuuid}, name='%ls', value='%ls', flags='%ls'\n", 2464 2464 machineId.ptr(), name.raw(), value.raw(), flags.raw())); 2465 2465 aCallback->OnGuestPropertyChange (machineId, name, value, flags); … … 2588 2588 { 2589 2589 setError (E_INVALIDARG, 2590 tr ("Could not find a registered machine with UUID {%R uuid}"),2590 tr ("Could not find a registered machine with UUID {%RTuuid}"), 2591 2591 aId.raw()); 2592 2592 } … … 2659 2659 { 2660 2660 if (aId) 2661 setError (rc, tr ("Could not find a hard disk with UUID {%R uuid} "2661 setError (rc, tr ("Could not find a hard disk with UUID {%RTuuid} " 2662 2662 "in the media registry ('%ls')"), 2663 2663 aId->raw(), mData.mCfgFile.mName.raw()); … … 2730 2730 { 2731 2731 if (aId) 2732 setError (rc, tr ("Could not find a CD/DVD image with UUID {%R uuid} "2732 setError (rc, tr ("Could not find a CD/DVD image with UUID {%RTuuid} " 2733 2733 "in the media registry ('%ls')"), 2734 2734 aId->raw(), mData.mCfgFile.mName.raw()); … … 2802 2802 { 2803 2803 if (aId) 2804 setError (rc, tr ("Could not find a floppy image with UUID {%R uuid} "2804 setError (rc, tr ("Could not find a floppy image with UUID {%RTuuid} " 2805 2805 "in the media registry ('%ls')"), 2806 2806 aId->raw(), mData.mCfgFile.mName.raw()); … … 2908 2908 AutoReadLock mediaLock (hardDisk); 2909 2909 aConflict = Utf8StrFmt ( 2910 tr ("hard disk '%ls' with UUID {%R uuid}"),2910 tr ("hard disk '%ls' with UUID {%RTuuid}"), 2911 2911 hardDisk->locationFull().raw(), hardDisk->id().raw()); 2912 2912 return S_OK; … … 2922 2922 AutoReadLock mediaLock (image); 2923 2923 aConflict = Utf8StrFmt ( 2924 tr ("CD/DVD image '%ls' with UUID {%R uuid}"),2924 tr ("CD/DVD image '%ls' with UUID {%RTuuid}"), 2925 2925 image->locationFull().raw(), image->id().raw()); 2926 2926 return S_OK; … … 2936 2936 AutoReadLock mediaLock (image); 2937 2937 aConflict = Utf8StrFmt ( 2938 tr ("floppy image '%ls' with UUID {%R uuid}"),2938 tr ("floppy image '%ls' with UUID {%RTuuid}"), 2939 2939 image->locationFull().raw(), image->id().raw()); 2940 2940 return S_OK; … … 3243 3243 3244 3244 return setError (E_INVALIDARG, 3245 tr ("Registered machine with UUID {%R uuid} ('%ls') already exists"),3245 tr ("Registered machine with UUID {%RTuuid} ('%ls') already exists"), 3246 3246 aMachine->id().raw(), m->settingsFileFull().raw()); 3247 3247 } … … 3306 3306 { 3307 3307 return setError (E_INVALIDARG, 3308 tr ("Cannot register the hard disk '%ls' with UUID {%R uuid} "3308 tr ("Cannot register the hard disk '%ls' with UUID {%RTuuid} " 3309 3309 "because a %s already exists in the media registry ('%ls')"), 3310 3310 aHardDisk->locationFull().raw(), aHardDisk->id().raw(), … … 3421 3421 { 3422 3422 return setError (E_INVALIDARG, 3423 tr ("Cannot register the CD/DVD image '%ls' with UUID {%R uuid} "3423 tr ("Cannot register the CD/DVD image '%ls' with UUID {%RTuuid} " 3424 3424 "because a %s already exists in the media registry ('%ls')"), 3425 3425 aImage->locationFull().raw(), aImage->id().raw(), … … 3522 3522 { 3523 3523 return setError (E_INVALIDARG, 3524 tr ("Cannot register the floppy image '%ls' with UUID {%R uuid} "3524 tr ("Cannot register the floppy image '%ls' with UUID {%RTuuid} " 3525 3525 "because a %s already exists in the media registry ('%ls')"), 3526 3526 aImage->locationFull().raw(), aImage->id().raw(),
Note:
See TracChangeset
for help on using the changeset viewer.