mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Correct Mac define value and drop tmpfs from qDebug output
This commit is contained in:
parent
80a5642ee3
commit
c2c61c6629
@ -806,14 +806,16 @@ QStringList getDriveList()
|
||||
#elif defined(Q_OS_WIN
|
||||
#define VFAT "FAT32"
|
||||
#elif defined(Q_OS_MAC)
|
||||
#define VFAT "FAT32"
|
||||
#define VFAT "msdos"
|
||||
#endif
|
||||
foreach (const QStorageInfo &storage, QStorageInfo::mountedVolumes()) {
|
||||
if (storage.isValid() && storage.isReady()) {
|
||||
qDebug() << "Device:" << storage.device();
|
||||
qDebug() << " Path:" << storage.rootPath();
|
||||
qDebug() << " Name:" << storage.name(); // ...
|
||||
qDebug() << " FS Type:" << storage.fileSystemType();
|
||||
if (storage.fileSystemType() != "tmpfs") { // Don't show all the Linux tmpfs mount points!
|
||||
qDebug() << "Device:" << storage.device();
|
||||
qDebug() << " Path:" << storage.rootPath();
|
||||
qDebug() << " Name:" << storage.name(); // ...
|
||||
qDebug() << " FS Type:" << storage.fileSystemType();
|
||||
}
|
||||
if (storage.fileSystemType() == VFAT) {
|
||||
qDebug() << "Adding" << storage.name() << "on" << storage.rootPath() << "to drivelist";
|
||||
drivelist.push_back(storage.rootPath());
|
||||
|
Loading…
Reference in New Issue
Block a user