diff --git a/src/widgets/kpropertiesdialog.cpp b/src/widgets/kpropertiesdialog.cpp --- a/src/widgets/kpropertiesdialog.cpp +++ b/src/widgets/kpropertiesdialog.cpp @@ -75,6 +75,7 @@ #include #include #include +#include #include #include #include @@ -1157,6 +1158,17 @@ grid->addWidget(sep, curRow, 0, 1, 3); ++curRow; + l = new QLabel(i18n("File system:"), d->m_frame); + grid->addWidget(l, curRow, 0, Qt::AlignRight); + l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); + + QStorageInfo *fileSystem = new QStorageInfo(QLatin1String("/")); + + l = new QLabel(d->m_frame); + grid->addWidget(l, curRow++, 2); + l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); + l->setText(QString(fileSystem->fileSystemType())); + if (isLocal) { KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(url.toLocalFile()); if (mp && mp->mountPoint() != QLatin1String("/")) {