Changeset 48295 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 5, 2013 9:41:48 AM (11 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/EventImpl.cpp
r47852 r48295 1359 1359 1360 1360 HRESULT rc = listener.createObject(); 1361 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create wrapper object (%R rc)", rc),1361 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create wrapper object (%Rhrc)", rc), 1362 1362 E_FAIL); 1363 1363 listener.queryInterfaceTo(aListener); … … 1377 1377 1378 1378 HRESULT rc = agg.createObject(); 1379 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create aggregator (%R rc)", rc),1379 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create aggregator (%Rhrc)", rc), 1380 1380 E_FAIL); 1381 1381 … … 1397 1397 1398 1398 rc = mSource.createObject(); 1399 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create source (%R rc)", rc),1399 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create source (%Rhrc)", rc), 1400 1400 E_FAIL); 1401 1401 rc = mSource->init((IEventSource*)this); 1402 ComAssertMsgRet(SUCCEEDED(rc), ("Could not init source (%R rc)", rc),1402 ComAssertMsgRet(SUCCEEDED(rc), ("Could not init source (%Rhrc)", rc), 1403 1403 E_FAIL); 1404 1404 … … 1537 1537 1538 1538 HRESULT rc = proxy.createObject(); 1539 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create proxy (%R rc)", rc),1539 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create proxy (%Rhrc)", rc), 1540 1540 E_FAIL); 1541 1541 -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r47991 r48295 3601 3601 // the failure may occur w/o any error info (from RPC), so provide one 3602 3602 return setError(VBOX_E_VM_ERROR, 3603 tr("Failed to get a console object from the direct session (%R rc)"), rc);3603 tr("Failed to get a console object from the direct session (%Rhrc)"), rc); 3604 3604 3605 3605 ComAssertRet(!pConsoleW.isNull(), E_FAIL); … … 3613 3613 // the failure may occur w/o any error info (from RPC), so provide one 3614 3614 return setError(VBOX_E_VM_ERROR, 3615 tr("Failed to assign the machine to the session (%R rc)"), rc);3615 tr("Failed to assign the machine to the session (%Rhrc)"), rc); 3616 3616 alock.acquire(); 3617 3617 … … 3714 3714 if (FAILED(rc)) 3715 3715 setError(VBOX_E_VM_ERROR, 3716 tr("Failed to assign the machine to the session (%R rc)"), rc);3716 tr("Failed to assign the machine to the session (%Rhrc)"), rc); 3717 3717 3718 3718 if ( SUCCEEDED(rc) … … 3747 3747 if (FAILED(rc)) 3748 3748 setError(VBOX_E_VM_ERROR, 3749 tr("Failed to assign the machine to the remote session (%R rc)"), rc);3749 tr("Failed to assign the machine to the remote session (%Rhrc)"), rc); 3750 3750 } 3751 3751 … … 8119 8119 /* The failure may occur w/o any error info (from RPC), so provide one */ 8120 8120 return setError(VBOX_E_VM_ERROR, 8121 tr("Failed to assign the machine to the session (%R rc)"), rc);8121 tr("Failed to assign the machine to the session (%Rhrc)"), rc); 8122 8122 } 8123 8123 … … 8259 8259 rc = setError(E_FAIL, 8260 8260 tr("The virtual machine '%s' has terminated unexpectedly during startup (%Rrc)"), 8261 getName().c_str(), rc);8261 getName().c_str(), vrc); 8262 8262 } 8263 8263
Note:
See TracChangeset
for help on using the changeset viewer.