summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/versioninfo.cpp
authorkergoth <kergoth>2002-03-18 22:33:56 (UTC)
committer kergoth <kergoth>2002-03-18 22:33:56 (UTC)
commite7171ae513696f32a1edfeb41e22ff5b036c0460 (patch) (side-by-side diff)
tree21297e19e810b5056a461431a0f1d8f57f66049d /noncore/settings/sysinfo/versioninfo.cpp
parentd41e6d2ed4caeabf78ab08bde7d4f5866c9eeb04 (diff)
downloadopie-e7171ae513696f32a1edfeb41e22ff5b036c0460.zip
opie-e7171ae513696f32a1edfeb41e22ff5b036c0460.tar.gz
opie-e7171ae513696f32a1edfeb41e22ff5b036c0460.tar.bz2
oops
Diffstat (limited to 'noncore/settings/sysinfo/versioninfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/versioninfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp
index 27c4cf5..517029b 100644
--- a/noncore/settings/sysinfo/versioninfo.cpp
+++ b/noncore/settings/sysinfo/versioninfo.cpp
@@ -57,25 +57,25 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
QString builder = QPE_VENDOR;
#else
QString builder = "Unknown";
#endif
palmtopVersionString += tr( "Compiled by: " ) + builder + "<p>";
palmtopVersionString += tr( "Built on: " ) + __DATE__;
QHBoxLayout *hb1 = new QHBoxLayout( vb );
hb1->setSpacing( 2 );
QLabel *palmtopLogo = new QLabel( this );
- QImage logo1 = Resource::loadImage( "launcher/launcher/opielogo" );
+ QImage logo1 = Resource::loadImage( "launcher/opielogo" );
logo1 = logo1.smoothScale( 50, 55 );
QPixmap logo1Pixmap;
logo1Pixmap.convertFromImage( logo1 );
palmtopLogo->setPixmap( logo1Pixmap );
palmtopLogo->setFixedSize( 60, 60 );
hb1->addWidget( palmtopLogo, 0, Qt::AlignTop + Qt::AlignLeft );
QLabel *palmtopVersion = new QLabel( this );
palmtopVersion->setText( palmtopVersionString );
hb1->addWidget( palmtopVersion, 1, Qt::AlignTop + Qt::AlignLeft );