author | mickeyl <mickeyl> | 2003-12-08 12:43:59 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-12-08 12:43:59 (UTC) |
commit | 65720fa57a282c55e4f27ec11d892cc678719581 (patch) (side-by-side diff) | |
tree | 65065c93d6f681e0b0dd45f6fb8aa6f87d3e49c8 | |
parent | 7b4e723545a645056156246d27b2c26c78d599f3 (diff) | |
download | opie-65720fa57a282c55e4f27ec11d892cc678719581.zip opie-65720fa57a282c55e4f27ec11d892cc678719581.tar.gz opie-65720fa57a282c55e4f27ec11d892cc678719581.tar.bz2 |
use less separation
-rw-r--r-- | noncore/settings/sysinfo/versioninfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp index abb8d7f..1984823 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp @@ -42,25 +42,25 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) : QWidget( parent, name, f ) { setMinimumSize( 200, 150 ); QVBoxLayout *tmpvb = new QVBoxLayout( this ); QScrollView *sv = new QScrollView( this ); tmpvb->addWidget( sv, 0, 0 ); sv->setResizePolicy( QScrollView::AutoOneFit ); sv->setFrameStyle( QFrame::NoFrame ); QWidget *container = new QWidget( sv->viewport() ); sv->addChild( container ); - QVBoxLayout *vb = new QVBoxLayout( container, 4 ); + QVBoxLayout *vb = new QVBoxLayout( container, 3 ); QString kernelVersionString; QFile file( "/proc/version" ); if ( file.open( IO_ReadOnly ) ) { QTextStream t( &file ); QString v; t >> v; t >> v; t >> v; v = v.left( 20 ); kernelVersionString = "<qt>" + tr( "<b>Linux Kernel</b><p>Version: " ); kernelVersionString.append( v ); kernelVersionString.append( "<br>" ); |