summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysinfo.cpp
authormickeyl <mickeyl>2004-02-27 16:26:54 (UTC)
committer mickeyl <mickeyl>2004-02-27 16:26:54 (UTC)
commit557424c8b345677038e6e35aae2ada22748af904 (patch) (side-by-side diff)
tree047afc03d6b269e56d30fd1069813d64c8413dca /noncore/settings/sysinfo/sysinfo.cpp
parent4075bd88da2eb3f3eec78fe283023231764834b4 (diff)
downloadopie-557424c8b345677038e6e35aae2ada22748af904.zip
opie-557424c8b345677038e6e35aae2ada22748af904.tar.gz
opie-557424c8b345677038e6e35aae2ada22748af904.tar.bz2
This patch adds a benchmark tab to SysInfo!
Available tests & Implementation Status: ------------------------------------------- Integer Arithmetic: done Floating Point: done Text Rendering: done Gfx Rendering: done RAM Performance: in progress SD Performance: not yet done CF Performance: not yet done ------------------------------------------- I will complete this on weekend by adding the last tests and adding a comparison table for known systems :) Have Fun!
Diffstat (limited to 'noncore/settings/sysinfo/sysinfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/sysinfo.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/sysinfo.cpp b/noncore/settings/sysinfo/sysinfo.cpp
index 5f7b527..fda6352 100644
--- a/noncore/settings/sysinfo/sysinfo.cpp
+++ b/noncore/settings/sysinfo/sysinfo.cpp
@@ -29,2 +29,3 @@
#include "modulesinfo.h"
+#include "benchmarkinfo.h"
#include "versioninfo.h"
@@ -54,2 +55,3 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags )
lay->addWidget( tab );
+
tab->addTab( new MemoryInfo( tab ), "sysinfo/memorytabicon", tr("Memory") );
@@ -64,2 +66,3 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags )
}
+ tab->addTab( new BenchmarkInfo( tab ), "sysinfo/benchmarktabicon", tr( "Benchmark" ) );
tab->addTab( new VersionInfo( tab ), "sysinfo/versiontabicon", tr("Version") );