Changeset 33934 in vbox for trunk/src/VBox/Main/MachineImpl.cpp
- Timestamp:
- Nov 10, 2010 3:25:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r33921 r33934 5740 5740 * if it is a subdirectory thereof, or simply copying it otherwise. 5741 5741 * 5742 * @param strSource Path to evalu e and copy.5742 * @param strSource Path to evaluate and copy. 5743 5743 * @param strTarget Buffer to receive target path. 5744 5744 * … … 5759 5759 if (RTPathStartsWith(strSource.c_str(), strTarget.c_str())) 5760 5760 // is relative: then append what's left 5761 strTarget .append(strSource.c_str() + strTarget.length()); // include'/'5761 strTarget = strSource.substr(strTarget.length() + 1); // skip '/' 5762 5762 else 5763 5763 // is not relative: then overwrite
Note:
See TracChangeset
for help on using the changeset viewer.