summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qglobal.h
diff options
context:
space:
mode:
authorHarald Fernengel <harald@trolltech.com>2009-06-10 13:32:13 (GMT)
committerHarald Fernengel <harald@trolltech.com>2009-06-10 13:33:30 (GMT)
commit07c2b197b294043893ff792c851f5833736e41e3 (patch)
tree6b12480e6e3986a1d235f1af4c1747512d2cb485 /src/corelib/global/qglobal.h
parenta293cab198f51ca8920c3da1b671f51b26a9cb4a (diff)
downloadQt-07c2b197b294043893ff792c851f5833736e41e3.zip
Qt-07c2b197b294043893ff792c851f5833736e41e3.tar.gz
Qt-07c2b197b294043893ff792c851f5833736e41e3.tar.bz2
doc: document the Symbian exception helpers
Diffstat (limited to 'src/corelib/global/qglobal.h')
-rw-r--r--src/corelib/global/qglobal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h
index 030840e..3d441e3 100644
--- a/src/corelib/global/qglobal.h
+++ b/src/corelib/global/qglobal.h
@@ -2468,10 +2468,11 @@ QT_LICENSED_MODULE(DBus)
#if defined(Q_OS_SYMBIAN)
#include <stdexcept>
+
class QSymbianLeaveException : public std::exception
{
public:
- QSymbianLeaveException(int err) : error(err){ }
+ inline QSymbianLeaveException(int err) : error(err) {}
const char* what() const throw();
public:
int error;