summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysinfo.cpp
Side-by-side diff
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 bc483aa..5697f36 100644
--- a/noncore/settings/sysinfo/sysinfo.cpp
+++ b/noncore/settings/sysinfo/sysinfo.cpp
@@ -19,12 +19,13 @@
**********************************************************************/
#include "memory.h"
#include "load.h"
#include "storage.h"
//#include "graphics.h"
+#include "processinfo.h"
#include "versioninfo.h"
#include "sysinfo.h"
#include <qpe/resource.h>
@@ -42,12 +43,13 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags f )
tab->addTab( new MemoryInfo( tab ), tr("Memory") );
#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
tab->addTab( new StorageInfo( tab ), tr("Storage") );
#endif
tab->addTab( new LoadInfo( tab ), tr("CPU") );
// tab->addTab( new Graphics( tab ), tr("Graphics") );
+ tab->addTab( new ProcessInfo( tab ), tr("Process") );
tab->addTab( new VersionInfo( tab ), tr("Version") );
resize( 220, 180 );
}