diff options
author | David Boddie <dboddie@trolltech.com> | 2009-07-09 16:52:46 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-07-09 16:52:46 (GMT) |
commit | b7c63e3d89006c9795835a79741b8d7a46891f93 (patch) | |
tree | d7b1ebb2db38d8f6efc43f055613390efe85764c /doc | |
parent | bf6ba4cecb565514d4d9a531b473e91940b1a547 (diff) | |
download | Qt-b7c63e3d89006c9795835a79741b8d7a46891f93.zip Qt-b7c63e3d89006c9795835a79741b8d7a46891f93.tar.gz Qt-b7c63e3d89006c9795835a79741b8d7a46891f93.tar.bz2 |
Doc: Minor fixes.
Reviewed-by: Trust Me
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/symbian-exceptionsafety.qdoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/symbian-exceptionsafety.qdoc b/doc/src/symbian-exceptionsafety.qdoc index e42ecd1..56b28c9 100644 --- a/doc/src/symbian-exceptionsafety.qdoc +++ b/doc/src/symbian-exceptionsafety.qdoc @@ -54,14 +54,14 @@ Qt and Symbian have different exception systems. Qt works with standard C++ exceptions, whereas Symbian has its TRAP/Leave/CleanupStack system. So, what would - happen if - you mix the two systems? It could go wrong in a number of ways. + happen if you mix the two systems? It could go wrong in a number of ways. - Cleanup ordering would be different between the two. When Symbian code - leaves, the cleanup stack is cleaned up before anything else happens. After + Clean-up ordering would be different between the two. When Symbian code + leaves, the clean-up stack is cleaned up before anything else happens. After that, the objects on the call stack would be cleaned up as with a normal - exception. So if there are any dependencies between stack based and cleanup stack - owned objects, there could be problems due to this ordering. + exception. So if there are any dependencies between stack-based and + objects owned by the clean-up stack, there could be problems due to this + ordering. Symbian's \c XLeaveException, which is used when Symbian implements leaves as exceptions, is not derived from \c std::exception, so would not be caught in |