diff options
author | hjk <[email protected]> | 2009-09-15 18:21:40 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2009-09-16 11:10:59 +0200 |
commit | 91e60257cd6f357f591f86c81ff297b4978fe38b (patch) | |
tree | 620ebf18605e9c8e5a6d83c84c2c2f3b9e7699c0 /src/plugins/debugger/watchutils.cpp | |
parent | 2d9da51892b80369d38ee89f5cd44177d851335d (diff) |
debugger: special handling for Symbian TInt and TBool.
We know they don't have nested contents
Diffstat (limited to 'src/plugins/debugger/watchutils.cpp')
-rw-r--r-- | src/plugins/debugger/watchutils.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchutils.cpp b/src/plugins/debugger/watchutils.cpp index 1663f942668..ff706a13bf6 100644 --- a/src/plugins/debugger/watchutils.cpp +++ b/src/plugins/debugger/watchutils.cpp @@ -339,6 +339,13 @@ bool isIntType(const QString &type) return types.contains(type); } +bool isSymbianIntType(const QString &type) +{ + static const QStringList types = QStringList() + << QLatin1String("TInt") << QLatin1String("TBool"); + return types.contains(type); +} + bool isIntOrFloatType(const QString &type) { static const QStringList types = QStringList() |