Changeset 81138 in vbox
- Timestamp:
- Oct 8, 2019 9:21:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp
r78146 r81138 210 210 item->setData(fsInfo.GetUserName(), UICustomFileSystemModelColumn_Owner); 211 211 item->setData(permissionString(fsInfo), UICustomFileSystemModelColumn_Permissions); 212 item->setPath(UIPathOperations:: mergePaths(strPath, fsInfo.GetName()));212 item->setPath(UIPathOperations::removeTrailingDelimiters(UIPathOperations::mergePaths(strPath, fsInfo.GetName()))); 213 213 item->setIsOpened(false); 214 214 item->setIsHidden(isFileObjectHidden(fsInfo)); … … 293 293 if (!item || item->isUpDirectory() || newBaseName.isEmpty()) 294 294 return false; 295 QString newPath = UIPathOperations:: constructNewItemPath(item->path(), newBaseName);295 QString newPath = UIPathOperations::removeTrailingDelimiters(UIPathOperations::constructNewItemPath(item->path(), newBaseName)); 296 296 QVector<KFsObjRenameFlag> aFlags(1, KFsObjRenameFlag_Replace); 297 297
Note:
See TracChangeset
for help on using the changeset viewer.