Changeset 97425 in vbox for trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
- Timestamp:
- Nov 6, 2022 5:16:58 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 154430
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r97417 r97425 786 786 787 787 /** 788 * Copies a file from the guest to the host.788 * Copies a file from the host to the guest. 789 789 * 790 * @param strSrc Full path of source file on the host to copy.791 * @param strDst Full destination path and file name (guest style) to copy file to. 790 * @param strSrc Full path of source file on the host. 791 * @param strDst Full destination path and file name (guest style) to copy file to. Guest-path style. 792 792 * @param fFileCopyFlags File copy flags. 793 793 */ … … 811 811 { 812 812 if (vrc == VERR_GSTCTL_GUEST_ERROR) 813 setProgressErrorMsg(VBOX_E_IPRT_ERROR, tr("Guest file could not be opened"),814 GuestErrorInfo(GuestErrorInfo::Type_File, vrcGuest, str Src.c_str()));813 setProgressErrorMsg(VBOX_E_IPRT_ERROR, tr("Guest file \"%s\" could not be created or replaced"), 814 GuestErrorInfo(GuestErrorInfo::Type_File, vrcGuest, strDst.c_str())); 815 815 else 816 816 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 817 Utf8StrFmt(tr("Guest file \"%s\" could not be opened: %Rrc"), strSrc.c_str(), vrc));817 Utf8StrFmt(tr("Guest file \"%s\" could not be created or replaced: %Rrc"), strDst.c_str(), vrc)); 818 818 return vrc; 819 819 }
Note:
See TracChangeset
for help on using the changeset viewer.