Changeset 75931 in vbox
- Timestamp:
- Dec 3, 2018 11:27:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIHostFileTable.cpp
r75903 r75931 228 228 /* if the item is a symlink set the target path and 229 229 check the target if it is a directory: */ 230 if (fileInfo.isSymLink()) 230 if (fileInfo.isSymLink()) /** @todo No symlinks here on windows, while fsObjectPropertyString() does see them. RTDirReadEx works wrt symlinks, btw. */ 231 231 { 232 232 item->setTargetPath(fileInfo.symLinkTarget()); … … 360 360 QStringList propertyStringList; 361 361 /* Name: */ 362 propertyStringList << UIGuestControlFileManager::tr("<b>Name:</b> %1").arg(fileInfo.fileName()); 363 if (!fileInfo.suffix().isEmpty()) 364 propertyStringList << QString(".%1").arg(fileInfo.suffix()); 365 propertyStringList << "<br/>"; 362 propertyStringList << UIGuestControlFileManager::tr("<b>Name:</b> %1<br/>").arg(fileInfo.fileName()); 366 363 /* Size: */ 367 364 propertyStringList << UIGuestControlFileManager::tr("<b>Size:</b> %1 bytes").arg(QString::number(fileInfo.size()));
Note:
See TracChangeset
for help on using the changeset viewer.

