summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/versioninfo.cpp
authorharlekin <harlekin>2004-01-07 22:59:40 (UTC)
committer harlekin <harlekin>2004-01-07 22:59:40 (UTC)
commitc4d6574e85f74d6086c1709ecf0d117df7417222 (patch) (side-by-side diff)
tree73ec72034552ff8def55dd8c0b7115d05a2d3260 /noncore/settings/sysinfo/versioninfo.cpp
parent872dc276a047a289561779fb59ab4ce45aaa9062 (diff)
downloadopie-c4d6574e85f74d6086c1709ecf0d117df7417222.zip
opie-c4d6574e85f74d6086c1709ecf0d117df7417222.tar.gz
opie-c4d6574e85f74d6086c1709ecf0d117df7417222.tar.bz2
bring over some enhancements I allready did in branch
Diffstat (limited to 'noncore/settings/sysinfo/versioninfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/versioninfo.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp
index 1984823..c44a05a 100644
--- a/noncore/settings/sysinfo/versioninfo.cpp
+++ b/noncore/settings/sysinfo/versioninfo.cpp
@@ -22,14 +22,10 @@
#include <qpe/version.h>
#include <qfile.h>
-#include <qimage.h>
#include <qlabel.h>
#include <qlayout.h>
-#include <qpixmap.h>
-#include <qpainter.h>
#include <qscrollview.h>
#include <qtextstream.h>
-#include <qtimer.h>
#include <qwhatsthis.h>
#include "versioninfo.h"
@@ -58,15 +54,15 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
if ( file.open( IO_ReadOnly ) )
{
QTextStream t( &file );
- QString v;
- t >> v; t >> v; t >> v;
- v = v.left( 20 );
+ QStringList strList;
+
+ strList = QStringList::split( " " , t.read(), false );
+
kernelVersionString = "<qt>" + tr( "<b>Linux Kernel</b><p>Version: " );
- kernelVersionString.append( v );
+ kernelVersionString.append( strList[2] );
kernelVersionString.append( "<br>" );
- t >> v;
kernelVersionString.append( tr( "Compiled by: " ) );
- kernelVersionString.append( v );
+ kernelVersionString.append( strList[3] );
kernelVersionString.append("</qt>");
file.close();
}