Changeset 22300 in vbox
- Timestamp:
- Aug 17, 2009 3:11:30 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51173
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r22298 r22300 8097 8097 if (childrenCount > 1) 8098 8098 return setError(VBOX_E_INVALID_OBJECT_STATE, 8099 tr("Snapshot '% ls' of the machine '%ls' has more than one child snapshot (%d)"),8100 snapshot->getName(). raw(),8099 tr("Snapshot '%s' of the machine '%ls' has more than one child snapshot (%d)"), 8100 snapshot->getName().c_str(), 8101 8101 mUserData->mName.raw(), 8102 8102 childrenCount); … … 8120 8120 progress.createObject(); 8121 8121 rc = progress->init (mParent, aInitiator, 8122 Bstr(Utf8StrFmt(tr("Discarding snapshot '% ls'"),8123 snapshot->getName(). raw())),8122 Bstr(Utf8StrFmt(tr("Discarding snapshot '%s'"), 8123 snapshot->getName().c_str())), 8124 8124 FALSE /* aCancelable */, 8125 8125 1 + (ULONG)snapshot->getSnapshotMachine()->mHDData->mAttachments.size() +
Note:
See TracChangeset
for help on using the changeset viewer.