author | kergoth <kergoth> | 2002-03-18 22:33:56 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-03-18 22:33:56 (UTC) |
commit | e7171ae513696f32a1edfeb41e22ff5b036c0460 (patch) (side-by-side diff) | |
tree | 21297e19e810b5056a461431a0f1d8f57f66049d /noncore | |
parent | d41e6d2ed4caeabf78ab08bde7d4f5866c9eeb04 (diff) | |
download | opie-e7171ae513696f32a1edfeb41e22ff5b036c0460.zip opie-e7171ae513696f32a1edfeb41e22ff5b036c0460.tar.gz opie-e7171ae513696f32a1edfeb41e22ff5b036c0460.tar.bz2 |
oops
-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 27c4cf5..517029b 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp @@ -53,33 +53,33 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) QString palmtopVersionString; palmtopVersionString = tr( "<b>Opie</b><p>Version: " ) + QPE_VERSION + "<p>"; #ifdef QPE_VENDOR 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 ); QHBoxLayout *hb2 = new QHBoxLayout( vb ); hb1->setSpacing( 2 ); QLabel *linuxLogo = new QLabel( this ); |