@@ -53,18 +53,18 @@ class MBASE_PUBLIC FileSystemInfo
53
53
void clear () { *this = FileSystemInfo (); }
54
54
55
55
// information gets
56
- QString getHostname (void ) const { return m_hostname; }
57
- QString getPath (void ) const { return m_path; }
58
- bool isLocal (void ) const { return m_local; }
59
- int getFSysID (void ) const { return m_fsid; }
60
- int getGroupID (void ) const { return m_grpid; }
61
- int getBlockSize (void ) const { return m_blksize; }
62
- int64_t getTotalSpace (void ) const { return m_total; }
63
- int64_t getUsedSpace (void ) const { return m_used; }
64
- int getWeight (void ) const { return m_weight; }
56
+ QString getHostname () const { return m_hostname; }
57
+ QString getPath () const { return m_path; }
58
+ bool isLocal () const { return m_local; }
59
+ int getFSysID () const { return m_fsid; }
60
+ int getGroupID () const { return m_grpid; }
61
+ int getBlockSize () const { return m_blksize; }
62
+ int64_t getTotalSpace () const { return m_total; }
63
+ int64_t getUsedSpace () const { return m_used; }
64
+ int getWeight () const { return m_weight; }
65
65
66
66
// not cached because of use in mythbackend/autoexpire
67
- int64_t getFreeSpace (void ) const { return m_total - m_used; }
67
+ int64_t getFreeSpace () const { return m_total - m_used; }
68
68
69
69
// information puts
70
70
void setHostname (QString hostname) { m_hostname = std::move (hostname); }
0 commit comments