Changeset 33244 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Oct 20, 2010 9:07:34 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r33201 r33244 3489 3489 */ 3490 3490 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 3491 N_("Malformed host interface networking name '%ls'"),3492 HifName.raw());3491 N_("Malformed host interface networking name '%ls'"), 3492 HifName.raw()); 3493 3493 } 3494 3494 *pszColon = '\0'; … … 3524 3524 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: FindByName failed, rc=%Rhrc (0x%x)", hrc, hrc)); 3525 3525 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 3526 N_("Inexistent host networking interface, name '%ls'"),3527 HifName.raw());3526 N_("Inexistent host networking interface, name '%ls'"), 3527 HifName.raw()); 3528 3528 } 3529 3529 … … 3539 3539 { 3540 3540 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 3541 3542 3541 N_("Interface ('%ls') is not a Bridged Adapter interface"), 3542 HifName.raw()); 3543 3543 } 3544 3544 … … 3892 3892 LogRel(("NetworkAttachmentType_HostOnly: FindByName failed, rc (0x%x)\n", rc)); 3893 3893 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 3894 N_("Inexistent host networking interface, name '%ls'"),3895 HifName.raw());3894 N_("Inexistent host networking interface, name '%ls'"), 3895 HifName.raw()); 3896 3896 } 3897 3897 … … 3917 3917 if (eIfType != HostNetworkInterfaceType_HostOnly) 3918 3918 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 3919 N_("Interface ('%ls') is not a Host-Only Adapter interface"),3920 HifName.raw());3919 N_("Interface ('%ls') is not a Host-Only Adapter interface"), 3920 HifName.raw()); 3921 3921 3922 3922 hrc = hostInterface->COMGETTER(Id)(bstr.asOutParam());
Note:
See TracChangeset
for help on using the changeset viewer.