Changeset 48295 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Sep 5, 2013 9:41:48 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88712
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.