Changeset 91503 in vbox for trunk/src/VBox/Main/src-server/win
- Timestamp:
- Oct 1, 2021 8:57:59 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147192
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r85265 r91503 46 46 #include "ProgressImpl.h" 47 47 #include "VirtualBoxImpl.h" 48 #include "VBoxNls.h" 48 49 #include "Global.h" 49 50 #include "netif.h" 50 51 #include "ThreadTask.h" 52 53 DECLARE_TRANSLATION_CONTEXT(NetIfWin); 51 54 52 55 #ifdef VBOX_WITH_NETFLT … … 1163 1166 { 1164 1167 hrc = progress->init(pVirtualBox, host, 1165 Bstr( _T("Creating host only network interface")).raw(),1168 Bstr(NetIfWin::tr("Creating host only network interface")).raw(), 1166 1169 FALSE /* aCancelable */); 1167 1170 if (SUCCEEDED(hrc)) … … 1211 1214 { 1212 1215 hrc = progress->init(pVirtualBox, host, 1213 Bstr( _T("Removing host network interface")).raw(),1216 Bstr(NetIfWin::tr("Removing host network interface")).raw(), 1214 1217 FALSE /* aCancelable */); 1215 1218 if (SUCCEEDED(hrc)) … … 1258 1261 { 1259 1262 rc = progress->init(pVBox, (IHostNetworkInterface*)pIf, 1260 Bstr( "Enabling Dynamic Ip Configuration").raw(),1263 Bstr(NetIfWin::tr("Enabling Dynamic Ip Configuration")).raw(), 1261 1264 FALSE /* aCancelable */); 1262 1265 if (SUCCEEDED(rc)) … … 1316 1319 { 1317 1320 rc = progress->init(pVBox, (IHostNetworkInterface*)pIf, 1318 Bstr( "Enabling Dynamic Ip Configuration").raw(),1321 Bstr(NetIfWin::tr("Enabling Dynamic Ip Configuration")).raw(), 1319 1322 FALSE /* aCancelable */); 1320 1323 if (SUCCEEDED(rc)) … … 1373 1376 { 1374 1377 rc = progress->init(pVBox, (IHostNetworkInterface*)pIf, 1375 Bstr( "Enabling Dynamic Ip Configuration").raw(),1378 Bstr(NetIfWin::tr("Enabling Dynamic Ip Configuration")).raw(), 1376 1379 FALSE /* aCancelable */); 1377 1380 if (SUCCEEDED(rc)) … … 1428 1431 { 1429 1432 rc = progress->init(pVBox, (IHostNetworkInterface*)pIf, 1430 Bstr( "Enabling Dynamic Ip Configuration").raw(),1433 Bstr(NetIfWin::tr("Enabling Dynamic Ip Configuration")).raw(), 1431 1434 FALSE /* aCancelable */); 1432 1435 if (SUCCEEDED(rc))
Note:
See TracChangeset
for help on using the changeset viewer.