summaryrefslogtreecommitdiff
authordrw <drw>2002-09-26 00:14:53 (UTC)
committer drw <drw>2002-09-26 00:14:53 (UTC)
commit29d59d2aa3b56928c9ff3ccc6abab384e7117467 (patch) (unidiff)
tree0013df379c984407df5d1041969fba13ef451685
parent1a3037b2bbf40989921bbe2421b6a06f15fb85c1 (diff)
downloadopie-29d59d2aa3b56928c9ff3ccc6abab384e7117467.zip
opie-29d59d2aa3b56928c9ff3ccc6abab384e7117467.tar.gz
opie-29d59d2aa3b56928c9ff3ccc6abab384e7117467.tar.bz2
Use pics in logo dir now
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/versioninfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp
index 3a37086..1f5739a 100644
--- a/noncore/settings/sysinfo/versioninfo.cpp
+++ b/noncore/settings/sysinfo/versioninfo.cpp
@@ -57,42 +57,42 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
57 QString builder = QPE_VENDOR; 57 QString builder = QPE_VENDOR;
58#else 58#else
59 QString builder = "Unknown"; 59 QString builder = "Unknown";
60#endif 60#endif
61 palmtopVersionString += tr( "Compiled by: " ) + builder + "<p>"; 61 palmtopVersionString += tr( "Compiled by: " ) + builder + "<p>";
62 palmtopVersionString += tr( "Built on: " ) + __DATE__; 62 palmtopVersionString += tr( "Built on: " ) + __DATE__;
63 63
64 64
65 QHBoxLayout *hb1 = new QHBoxLayout( vb ); 65 QHBoxLayout *hb1 = new QHBoxLayout( vb );
66 hb1->setSpacing( 2 ); 66 hb1->setSpacing( 2 );
67 67
68 QLabel *palmtopLogo = new QLabel( this ); 68 QLabel *palmtopLogo = new QLabel( this );
69 QImage logo1 = Resource::loadImage( "launcher/opielogo" ); 69 QImage logo1 = Resource::loadImage( "logo/opielogo" );
70 logo1 = logo1.smoothScale( 50, 55 ); 70 logo1 = logo1.smoothScale( 50, 55 );
71 QPixmap logo1Pixmap; 71 QPixmap logo1Pixmap;
72 logo1Pixmap.convertFromImage( logo1 ); 72 logo1Pixmap.convertFromImage( logo1 );
73 palmtopLogo->setPixmap( logo1Pixmap ); 73 palmtopLogo->setPixmap( logo1Pixmap );
74 palmtopLogo->setFixedSize( 60, 60 ); 74 palmtopLogo->setFixedSize( 60, 60 );
75 hb1->addWidget( palmtopLogo, 0, Qt::AlignTop + Qt::AlignLeft ); 75 hb1->addWidget( palmtopLogo, 0, Qt::AlignTop + Qt::AlignLeft );
76 76
77 QLabel *palmtopVersion = new QLabel( this ); 77 QLabel *palmtopVersion = new QLabel( this );
78 palmtopVersion->setText( palmtopVersionString ); 78 palmtopVersion->setText( palmtopVersionString );
79 hb1->addWidget( palmtopVersion, 1, Qt::AlignTop + Qt::AlignLeft ); 79 hb1->addWidget( palmtopVersion, 1, Qt::AlignTop + Qt::AlignLeft );
80 80
81 81
82 QHBoxLayout *hb2 = new QHBoxLayout( vb ); 82 QHBoxLayout *hb2 = new QHBoxLayout( vb );
83 hb1->setSpacing( 2 ); 83 hb1->setSpacing( 2 );
84 84
85 QLabel *linuxLogo = new QLabel( this ); 85 QLabel *linuxLogo = new QLabel( this );
86 QImage logo2 = Resource::loadImage( "tux-logo" ); 86 QImage logo2 = Resource::loadImage( "logo/tux-logo" );
87 logo2 = logo2.smoothScale( 55, 60 ); 87 logo2 = logo2.smoothScale( 55, 60 );
88 QPixmap logo2Pixmap; 88 QPixmap logo2Pixmap;
89 logo2Pixmap.convertFromImage( logo2 ); 89 logo2Pixmap.convertFromImage( logo2 );
90 linuxLogo->setPixmap( logo2Pixmap ); 90 linuxLogo->setPixmap( logo2Pixmap );
91 linuxLogo->setFixedSize( 60, 60 ); 91 linuxLogo->setFixedSize( 60, 60 );
92 hb2->addWidget( linuxLogo, 0, Qt::AlignTop + Qt::AlignLeft ); 92 hb2->addWidget( linuxLogo, 0, Qt::AlignTop + Qt::AlignLeft );
93 93
94 QLabel *kernelVersion = new QLabel( this ); 94 QLabel *kernelVersion = new QLabel( this );
95 kernelVersion->setText( kernelVersionString ); 95 kernelVersion->setText( kernelVersionString );
96 hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft ); 96 hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft );
97} 97}
98 98