summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysinfo.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/sysinfo/sysinfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/sysinfo.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/noncore/settings/sysinfo/sysinfo.cpp b/noncore/settings/sysinfo/sysinfo.cpp
index 4c58999..7000175 100644
--- a/noncore/settings/sysinfo/sysinfo.cpp
+++ b/noncore/settings/sysinfo/sysinfo.cpp
@@ -30,2 +30,3 @@
#include "benchmarkinfo.h"
+#include "sysloginfo.h"
#include "versioninfo.h"
@@ -33,4 +34,5 @@
+/* OPIE */
#include <opie2/otabwidget.h>
-
+using namespace Opie::Ui;
#include <qpe/config.h>
@@ -38,5 +40,5 @@
+/* QT */
#include <qlayout.h>
-using namespace Opie::Ui;
SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags )
@@ -64,5 +66,6 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags )
{
- tab->addTab( new ProcessInfo( tab ), "sysinfo/processtabicon", tr("Process") );
- tab->addTab( new ModulesInfo( tab ), "sysinfo/moduletabicon", tr("Modules") );
+ tab->addTab( new ProcessInfo( tab ), "sysinfo/processtabicon", tr( "Process" ) );
+ tab->addTab( new ModulesInfo( tab ), "sysinfo/moduletabicon", tr( "Modules" ) );
}
+ tab->addTab( new SyslogInfo( tab ), "sysinfo/syslogtabicon", tr( "Syslog" ) );
tab->addTab( new BenchmarkInfo( tab ), "sysinfo/benchmarktabicon", tr( "Benchmark" ) );
@@ -72,3 +75 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags )
}
-
-