Changeset 66483 in vbox for trunk/src/VBox/Main/src-server/MachineImpl.cpp
- Timestamp:
- Apr 7, 2017 5:40:54 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r66217 r66483 5356 5356 if (FAILED(mac.rc())) throw mac.rc(); 5357 5357 Utf8Str strLocation = pMedium->i_getLocationFull(); 5358 LogFunc(("Deleting file %s\n", strLocation.c_str())); 5358 5359 rc = task.m_pProgress->SetNextOperation(BstrFmt(tr("Deleting '%s'"), strLocation.c_str()).raw(), 1); 5359 5360 if (FAILED(rc)) throw rc; 5360 LogFunc(("Deleting file %s\n", strLocation.c_str()));5361 5361 } 5362 5362 if (pMedium->i_isMediumFormatFile()) … … 5526 5526 Bstr(tr("Deleting files")).raw(), 5527 5527 true /* fCancellable */, 5528 (ULONG)( llFilesToDelete.size() + llMediums.size() + 1),// cOperations5529 Bstr Fmt(tr("Deleting '%s'"), llFilesToDelete.front().c_str()).raw());5528 (ULONG)(1 + llMediums.size() + llFilesToDelete.size() + 1), // cOperations 5529 Bstr(tr("Collecting file inventory")).raw()); 5530 5530 if (FAILED(rc)) 5531 5531 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.