author | mickeyl <mickeyl> | 2005-01-15 23:01:55 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-01-15 23:01:55 (UTC) |
commit | 490b0398b7e11f1485b902a6d9b99b9152be2492 (patch) (side-by-side diff) | |
tree | 8db1a44b807c5eab120cc23d5450440cd5ea59ca | |
parent | 9cdc5a15a6eaae0ddb782c5bd98210dc462c4621 (diff) | |
download | opie-490b0398b7e11f1485b902a6d9b99b9152be2492.zip opie-490b0398b7e11f1485b902a6d9b99b9152be2492.tar.gz opie-490b0398b7e11f1485b902a6d9b99b9152be2492.tar.bz2 |
remove tmpfs entry which confuses users and show mountpoints. patches courtesy hrw
-rw-r--r-- | noncore/settings/sysinfo/storage.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/storage.cpp b/noncore/settings/sysinfo/storage.cpp index fc583e3..9f70fc5 100644 --- a/noncore/settings/sysinfo/storage.cpp +++ b/noncore/settings/sysinfo/storage.cpp @@ -77,16 +77,21 @@ void FileSysInfo::updateMounts() bool frst=TRUE; FileSystem *fs; for ( QListIterator<FileSystem> it(storage->fileSystems()); it.current(); ++it ) { fs = it.current(); + if(fs->disk().left(5) == "tmpfs") + { + continue; + } + if ( !frst ) { QFrame *f = new QFrame( container ); vb->addWidget(f); f->setFrameStyle( QFrame::HLine | QFrame::Sunken ); lines.append(f); f->show(); } @@ -130,17 +135,17 @@ MountInfo::MountInfo( FileSystem *filesys, QWidget *parent, const char *name ) : QWidget( parent, name ) { QVBoxLayout *vb = new QVBoxLayout( this, 3 ); totalSize = new QLabel( this ); vb->addWidget( totalSize ); fs = filesys; - title = fs->name(); + title = fs->name() + "\t (" + fs->path() + ')'; data = new GraphData(); graph = new BarGraph( this ); graph->setFrameStyle( QFrame::Panel | QFrame::Sunken ); vb->addWidget( graph, 1 ); graph->setData( data ); legend = new GraphLegend( this ); |