summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qglobal.cpp
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-08-19 08:44:18 (GMT)
committeraxis <qt-info@nokia.com>2009-08-19 08:47:01 (GMT)
commite7b85ede7327c7ca928f07a211ed98bd3706567f (patch)
tree8df49c16eb4bfd041e0875459db0a32285bb8462 /src/corelib/global/qglobal.cpp
parent3ae4ebe921a318ba4474a6b0b9d76b1795d0719d (diff)
downloadQt-e7b85ede7327c7ca928f07a211ed98bd3706567f.zip
Qt-e7b85ede7327c7ca928f07a211ed98bd3706567f.tar.gz
Qt-e7b85ede7327c7ca928f07a211ed98bd3706567f.tar.bz2
Did some cleanups after review of the S60 branch.
RevBy: Trust me It's all comments and build fixes.
Diffstat (limited to 'src/corelib/global/qglobal.cpp')
-rw-r--r--src/corelib/global/qglobal.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/corelib/global/qglobal.cpp b/src/corelib/global/qglobal.cpp
index 73431e0..c4fbc49 100644
--- a/src/corelib/global/qglobal.cpp
+++ b/src/corelib/global/qglobal.cpp
@@ -1169,9 +1169,9 @@ bool qSharedBuild()
QSysInfo::symbianVersion() function gives the version of the
system on which the application is run.
- \value SV_9_2 Symbian OS 9.2
- \value SV_9_3 Symbian OS 9.3
- \value SV_9_4 Symbian OS 9.4
+ \value SV_9_2 Symbian OS v9.2
+ \value SV_9_3 Symbian OS v9.3
+ \value SV_9_4 Symbian OS v9.4
\value SV_Unknown An unknown and currently unsupported platform
\sa S60Version, WinVersion, MacVersion
@@ -2189,7 +2189,8 @@ void qt_message_output(QtMsgType msgType, const char *buf)
TPtrC8 ptr(reinterpret_cast<const TUint8*>(buf));
TInt len = Min(tmp.MaxLength(), ptr.Length());
tmp.Copy(ptr.Left(len));
- User::Panic(tmp, 0); // Panic the current thread
+ // Panic the current thread. We don't use real panic codes, so 0 has no special meaning.
+ User::Panic(tmp, 0);
#elif (defined(Q_OS_UNIX) || defined(Q_CC_MINGW))
abort(); // trap; generates core dump
#else