author | zecke <zecke> | 2003-08-23 09:04:41 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-23 09:04:41 (UTC) |
commit | 3dff9b4751fa9b63ddfd2527ec68add7fafb599d (patch) (side-by-side diff) | |
tree | c55f593f50f2949ae8ce6e1e374579a238487f8b | |
parent | a8859fac97c0b3255a261221d2b31ebedb56075c (diff) | |
download | opie-3dff9b4751fa9b63ddfd2527ec68add7fafb599d.zip opie-3dff9b4751fa9b63ddfd2527ec68add7fafb599d.tar.gz opie-3dff9b4751fa9b63ddfd2527ec68add7fafb599d.tar.bz2 |
Forward port of the label fix
-rw-r--r-- | noncore/settings/sysinfo/versioninfo.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp index 801af29..be24baa 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp @@ -62,3 +62,3 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) v = v.left( 20 ); - kernelVersionString = tr( "<b>Linux Kernel</b><p>Version: " ); + kernelVersionString = "<qt>"+tr( "<b>Linux Kernel</b><p>Version: " ); kernelVersionString.append( v ); @@ -68,2 +68,3 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) kernelVersionString.append( v ); + kernelVersionString.append("</qt>"); file.close(); @@ -79,3 +80,3 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) #endif - palmtopVersionString.append( tr( "Compiled by: " ) ); + palmtopVersionString.append( "<qt>"+ tr( "Compiled by: " ) ); palmtopVersionString.append( builder ); @@ -83,4 +84,5 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) palmtopVersionString.append( tr( "Built on: " ) ); - palmtopVersionString.append( __DATE__ ); - + palmtopVersionString.append( __DATE__ ); + palmtopVersionString.append( "</qt>" ); + @@ -132,3 +134,3 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) - QString systemString = "<b>"; + QString systemString = "<qt><b>"; systemString.append( ODevice::inst()->systemString() ); @@ -141,2 +143,3 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) systemString.append( ODevice::inst()->vendorString() ); + systemString.append("</qt>"); |