Changeset 43063 in vbox
- Timestamp:
- Aug 29, 2012 9:54:36 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80405
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r43058 r43063 1693 1693 1694 1694 If the resulting settings file already exists, this method will fail, 1695 unless @a forceOverwriteis set.1695 unless the forceOverwrite flag is set. 1696 1696 1697 1697 The new machine is created unregistered, with the initial configuration … … 1765 1765 "name=value" type entries. The following ones are recognized: 1766 1766 <tt>forceOverwrite=1</tt> to overwrite an existing machine settings 1767 file, and <tt>UUID=<uuid></tt> to specify a machine UUID. 1767 file, <tt>UUID=<uuid></tt> to specify a machine UUID and 1768 <tt>directoryIncludesUUID=1</tt> to switch to a special VM directory 1769 naming scheme which should not be used unless necessary. 1768 1770 </desc> 1769 1771 </param> -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r43041 r43063 9195 9195 Utf8Str groupPlusName = Utf8StrFmt("%s%c%s", 9196 9196 group.c_str(), RTPATH_DELIMITER, name.c_str()); 9197 /** @todo hack, make somehow use of ComposeMachineFilename */ 9198 if (mUserData->s.fDirectoryIncludesUUID) 9199 groupPlusName += Utf8StrFmt(" (%RTuuid)", mData->mUuid.raw()); 9197 9200 Utf8Str newGroupPlusName = Utf8StrFmt("%s%c%s", 9198 9201 newGroup.c_str(), RTPATH_DELIMITER, newName.c_str()); 9202 /** @todo hack, make somehow use of ComposeMachineFilename */ 9203 if (mUserData->s.fDirectoryIncludesUUID) 9204 newGroupPlusName += Utf8StrFmt(" (%RTuuid)", mData->mUuid.raw()); 9199 9205 configDir = configFile; 9200 9206 configDir.stripFilename(); -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r43041 r43063 1493 1493 strGroup.c_str(), 1494 1494 RTPATH_DELIMITER, 1495 str Name.c_str(),1495 strDirName.c_str(), 1496 1496 RTPATH_DELIMITER, 1497 1497 strName.c_str());
Note:
See TracChangeset
for help on using the changeset viewer.