summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2010-08-03 07:15:40 (GMT)
committeraxis <qt-info@nokia.com>2010-08-03 07:32:47 (GMT)
commit63d56a0815fead98b4bedc5b039458eea455495e (patch)
tree53bf35e240645395eb42a812b969b61925487b80
parentd18e3ec7e4e63e2612af18796dd6a3171df6fdca (diff)
downloadQt-63d56a0815fead98b4bedc5b039458eea455495e.zip
Qt-63d56a0815fead98b4bedc5b039458eea455495e.tar.gz
Qt-63d56a0815fead98b4bedc5b039458eea455495e.tar.bz2
Fixed incorrect values for QSysInfo::symbianVersion().
RevBy: Miikka Heikkinen
-rw-r--r--src/corelib/global/qglobal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/global/qglobal.cpp b/src/corelib/global/qglobal.cpp
index 861d77d..0e3a8d3 100644
--- a/src/corelib/global/qglobal.cpp
+++ b/src/corelib/global/qglobal.cpp
@@ -1877,9 +1877,9 @@ QSysInfo::SymbianVersion QSysInfo::symbianVersion()
case SV_S60_5_0:
return SV_9_4;
case SV_S60_5_1:
- return SV_9_4;
+ return SV_SF_2;
case SV_S60_5_2:
- return SV_9_4;
+ return SV_SF_3;
default:
return SV_Unknown;
}