Changeset 92900 in vbox
- Timestamp:
- Dec 14, 2021 4:52:04 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/guestctrl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp
r92896 r92900 624 624 * into existing directories on the guest. This otherwise would fail (default). */ 625 625 if (RTFS_IS_DIRECTORY(ObjInfo.Attr.fMode)) 626 { 626 627 aFlags.append("CopyIntoExisting"); 628 aFlags.append("Recursive"); 629 aFlags.append("FollowLinks"); 630 } 627 631 else /* Make sure to keep the vector in sync with the number of source items by adding an empty entry. */ 628 632 aFlags.append(""); … … 690 694 KFsObjType eType = fileType(fileInfo); 691 695 if (eType == KFsObjType_Directory) 696 { 692 697 aFlags.append("CopyIntoExisting"); 698 aFlags.append("Recursive"); 699 aFlags.append("FollowLinks"); 700 } 693 701 else /* Make sure to keep the vector in sync with the number of source items by adding an empty entry. */ 694 702 aFlags.append(""); -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerHostTable.cpp
r92860 r92900 373 373 propertyStringList << UIFileManager::tr("<b>Owner:</b> %1").arg(fileInfo.owner()); 374 374 375 return propertyStringList.join(QString()); ;375 return propertyStringList.join(QString()); 376 376 } 377 377
Note:
See TracChangeset
for help on using the changeset viewer.