qstorageinfo_unix.cpp: Fix build on Solaris
Task-number: QTBUG-44556 Change-Id: I22d791011866175ca88de88c0b1a7c4d9d397d8f Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
dee1998d4e
commit
6f87e1b526
@ -62,6 +62,7 @@
|
||||
# include <sys/statvfs.h>
|
||||
#elif defined(Q_OS_SOLARIS)
|
||||
# include <sys/mnttab.h>
|
||||
# include <sys/statvfs.h>
|
||||
#else
|
||||
# include <sys/statvfs.h>
|
||||
#endif
|
||||
@ -202,17 +203,17 @@ inline bool QStorageIterator::next()
|
||||
|
||||
inline QString QStorageIterator::rootPath() const
|
||||
{
|
||||
return QFile::decodeName(mnt->mnt_mountp);
|
||||
return QFile::decodeName(mnt.mnt_mountp);
|
||||
}
|
||||
|
||||
inline QByteArray QStorageIterator::fileSystemType() const
|
||||
{
|
||||
return QByteArray(mnt->mnt_fstype);
|
||||
return QByteArray(mnt.mnt_fstype);
|
||||
}
|
||||
|
||||
inline QByteArray QStorageIterator::device() const
|
||||
{
|
||||
return QByteArray(mnt->mnt_mntopts);
|
||||
return QByteArray(mnt.mnt_mntopts);
|
||||
}
|
||||
|
||||
#elif defined(Q_OS_ANDROID)
|
||||
|
Loading…
x
Reference in New Issue
Block a user