summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysinfo.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sysinfo/sysinfo.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/sysinfo.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/sysinfo.cpp b/noncore/settings/sysinfo/sysinfo.cpp
index 5697f36..13f810a 100644
--- a/noncore/settings/sysinfo/sysinfo.cpp
+++ b/noncore/settings/sysinfo/sysinfo.cpp
@@ -20,12 +20,13 @@
20 20
21#include "memory.h" 21#include "memory.h"
22#include "load.h" 22#include "load.h"
23#include "storage.h" 23#include "storage.h"
24//#include "graphics.h" 24//#include "graphics.h"
25#include "processinfo.h" 25#include "processinfo.h"
26#include "modulesinfo.h"
26#include "versioninfo.h" 27#include "versioninfo.h"
27#include "sysinfo.h" 28#include "sysinfo.h"
28 29
29 30
30#include <qpe/resource.h> 31#include <qpe/resource.h>
31 32
@@ -44,12 +45,13 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags f )
44#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 45#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
45 tab->addTab( new StorageInfo( tab ), tr("Storage") ); 46 tab->addTab( new StorageInfo( tab ), tr("Storage") );
46#endif 47#endif
47 tab->addTab( new LoadInfo( tab ), tr("CPU") ); 48 tab->addTab( new LoadInfo( tab ), tr("CPU") );
48// tab->addTab( new Graphics( tab ), tr("Graphics") ); 49// tab->addTab( new Graphics( tab ), tr("Graphics") );
49 tab->addTab( new ProcessInfo( tab ), tr("Process") ); 50 tab->addTab( new ProcessInfo( tab ), tr("Process") );
51 tab->addTab( new ModulesInfo( tab ), tr("Modules") );
50 tab->addTab( new VersionInfo( tab ), tr("Version") ); 52 tab->addTab( new VersionInfo( tab ), tr("Version") );
51 53
52 resize( 220, 180 ); 54 resize( 220, 180 );
53} 55}
54 56
55 57