Changeset 71177 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Mar 2, 2018 1:34:08 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r71176 r71177 503 503 { 504 504 case VERR_FILE_NOT_FOUND: /* This is the most likely error. */ 505 strError += Utf8StrFmt(tr("The specified file was not found on guest")); 505 RT_FALL_THROUGH(); 506 case VERR_PATH_NOT_FOUND: 507 strError += Utf8StrFmt(tr("No such file or directory on guest")); 506 508 break; 507 509 … … 512 514 case VERR_HGCM_SERVICE_NOT_FOUND: 513 515 strError += Utf8StrFmt(tr("The guest execution service is not available")); 514 break;515 516 case VERR_PATH_NOT_FOUND:517 strError += Utf8StrFmt(tr("Could not resolve path to specified file was not found on guest"));518 516 break; 519 517
Note:
See TracChangeset
for help on using the changeset viewer.