author | mickeyl <mickeyl> | 2005-01-23 18:08:30 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-01-23 18:08:30 (UTC) |
commit | da166ce6066568db9b7ac0bf5c2cc0dc9afb0776 (patch) (unidiff) | |
tree | 2a26219682f582a68fbcbe356f3755655b59664d | |
parent | 701dd4a1e9c64294a9d8947df18a5414bbf62a4f (diff) | |
download | opie-da166ce6066568db9b7ac0bf5c2cc0dc9afb0776.zip opie-da166ce6066568db9b7ac0bf5c2cc0dc9afb0776.tar.gz opie-da166ce6066568db9b7ac0bf5c2cc0dc9afb0776.tar.bz2 |
show Qt version instead of the builder name which is more or less irrelevant nowadays
-rw-r--r-- | noncore/settings/sysinfo/sysinfo.pro | 2 | ||||
-rw-r--r-- | noncore/settings/sysinfo/versioninfo.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/noncore/settings/sysinfo/sysinfo.pro b/noncore/settings/sysinfo/sysinfo.pro index fc754d7..e1d6449 100644 --- a/noncore/settings/sysinfo/sysinfo.pro +++ b/noncore/settings/sysinfo/sysinfo.pro | |||
@@ -31,6 +31,6 @@ DEPENDPATH += $(OPIEDIR)/include | |||
31 | LIBS += -lqpe -lopiecore2 -lopieui2 | 31 | LIBS += -lqpe -lopiecore2 -lopieui2 |
32 | DEFINES += UNIX | 32 | DEFINES += UNIX |
33 | TARGET = sysinfo | 33 | TARGET = sysinfo |
34 | VERSION = 1.2.1 | 34 | VERSION = 1.2.2 |
35 | 35 | ||
36 | include( $(OPIEDIR)/include.pro ) | 36 | include( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp index 2111298..d8fd7fa 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp | |||
@@ -78,8 +78,8 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | |||
78 | #else | 78 | #else |
79 | QString builder = "Unknown"; | 79 | QString builder = "Unknown"; |
80 | #endif | 80 | #endif |
81 | palmtopVersionString.append( tr( "Compiled by: " ) ); | 81 | palmtopVersionString.append( tr( "Built against Qt/E " ) ); |
82 | palmtopVersionString.append( builder ); | 82 | palmtopVersionString.append( QT_VERSION_STR ); |
83 | palmtopVersionString.append( "<br>" ); | 83 | palmtopVersionString.append( "<br>" ); |
84 | palmtopVersionString.append( tr( "Built on: " ) ); | 84 | palmtopVersionString.append( tr( "Built on: " ) ); |
85 | palmtopVersionString.append( __DATE__ ); | 85 | palmtopVersionString.append( __DATE__ ); |