Changeset 32718 in vbox for trunk/src/VBox/Main/ConsoleImplTeleporter.cpp
- Timestamp:
- Sep 23, 2010 12:57:52 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 66148
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImplTeleporter.cpp
r31256 r32718 956 956 HRESULT hrc = ptrProgress.createObject(); 957 957 if (FAILED(hrc)) return hrc; 958 hrc = ptrProgress->init(static_cast<IConsole *>(this), Bstr(tr("Teleporter")), TRUE /*aCancelable*/); 958 hrc = ptrProgress->init(static_cast<IConsole *>(this), 959 Bstr(tr("Teleporter")).raw(), 960 TRUE /*aCancelable*/); 959 961 if (FAILED(hrc)) return hrc; 960 962 … … 1093 1095 { 1094 1096 LogRel(("Teleporter: Waiting for incoming VM...\n")); 1095 hrc = pProgress->SetNextOperation(Bstr(tr("Waiting for incoming VM")) , 1);1097 hrc = pProgress->SetNextOperation(Bstr(tr("Waiting for incoming VM")).raw(), 1); 1096 1098 if (SUCCEEDED(hrc)) 1097 1099 { … … 1282 1284 { 1283 1285 LogRel(("Teleporter: Incoming VM from %RTnaddr!\n", &Addr)); 1284 hrc = pState->mptrProgress->SetNextOperation(BstrFmt(tr("Teleporting VM from %RTnaddr"), &Addr) , 8);1286 hrc = pState->mptrProgress->SetNextOperation(BstrFmt(tr("Teleporting VM from %RTnaddr"), &Addr).raw(), 8); 1285 1287 } 1286 1288 else 1287 1289 { 1288 1290 LogRel(("Teleporter: Incoming VM!\n")); 1289 hrc = pState->mptrProgress->SetNextOperation(Bstr(tr("Teleporting VM")) , 8);1291 hrc = pState->mptrProgress->SetNextOperation(Bstr(tr("Teleporting VM")).raw(), 8); 1290 1292 } 1291 1293 AssertMsg(SUCCEEDED(hrc) || hrc == E_FAIL, ("%Rhrc\n", hrc));
Note:
See TracChangeset
for help on using the changeset viewer.