author | llornkcor <llornkcor> | 2002-11-10 01:20:02 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-10 01:20:02 (UTC) |
commit | 7d446dff05a691da5b421b65ace687d787b06d81 (patch) (unidiff) | |
tree | 22ce2678382eea790f43eaa88ade162c9ed3281c | |
parent | d8bf328c4dfa2b33e2c5761c7af3b39ec307abee (diff) | |
download | opie-7d446dff05a691da5b421b65ace687d787b06d81.zip opie-7d446dff05a691da5b421b65ace687d787b06d81.tar.gz opie-7d446dff05a691da5b421b65ace687d787b06d81.tar.bz2 |
fix
-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 e92b36c..85b8b51 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp | |||
@@ -109,13 +109,13 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | |||
109 | QPixmap logo3Pixmap; | 109 | QPixmap logo3Pixmap; |
110 | logo3Pixmap.convertFromImage( logo3 ); | 110 | logo3Pixmap.convertFromImage( logo3 ); |
111 | palmtopLogo3->setPixmap( logo3Pixmap ); | 111 | palmtopLogo3->setPixmap( logo3Pixmap ); |
112 | palmtopLogo3->setFixedSize( 60, 60 ); | 112 | palmtopLogo3->setFixedSize( 60, 60 ); |
113 | hb3->addWidget( palmtopLogo3, 0, Qt::AlignTop + Qt::AlignLeft ); | 113 | hb3->addWidget( palmtopLogo3, 0, Qt::AlignTop + Qt::AlignLeft ); |
114 | 114 | ||
115 | systemString = tr( "<b>System</b><p>System: ") + ODevice::inst()->modelString() | 115 | QString systemString = tr( "<b>System</b><p>System: ") + ODevice::inst()->modelString() |
116 | +tr("<p>Version: " ) + ODevice::inst()->vendorString() | 116 | +tr("<p>Version: " ) + ODevice::inst()->vendorString() |
117 | +tr("<p>Model: ") + ODevice::inst()->systemString() | 117 | +tr("<p>Model: ") + ODevice::inst()->systemString() |
118 | +tr("<p>Vendor: ") + ODevice::inst()->systemVersionString(); | 118 | +tr("<p>Vendor: ") + ODevice::inst()->systemVersionString(); |
119 | 119 | ||
120 | QLabel *systemVersion = new QLabel( this ); | 120 | QLabel *systemVersion = new QLabel( this ); |
121 | systemVersion->setText( systemString ); | 121 | systemVersion->setText( systemString ); |