diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-05-31 09:45:25 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-05-31 10:30:58 (GMT) |
commit | e845c0d7a8ed33f2aa2a3ae5ebce931ea2043037 (patch) | |
tree | 2b872c1876da12cc48aadf8d18a1bb57fb38a4ad /tools | |
parent | 3860340918846b5b156ba8e018d12cfe90461208 (diff) | |
download | Qt-e845c0d7a8ed33f2aa2a3ae5ebce931ea2043037.zip Qt-e845c0d7a8ed33f2aa2a3ae5ebce931ea2043037.tar.gz Qt-e845c0d7a8ed33f2aa2a3ae5ebce931ea2043037.tar.bz2 |
Fix compilation with stricts compilers.
Base class is type-dependent. One must not use unqualified-id to access base member.
Reveiwed-by: Roberto Raggi
Diffstat (limited to 'tools')
-rw-r--r-- | tools/porting/src/codemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/porting/src/codemodel.h b/tools/porting/src/codemodel.h index cb3088f..04ad178 100644 --- a/tools/porting/src/codemodel.h +++ b/tools/porting/src/codemodel.h @@ -96,7 +96,7 @@ class Collection: public QMultiHash<QByteArray, CollectedType *> { public: void add(CollectedType *collectedItem) - { insert(collectedItem->name(), collectedItem); } + { this->insert(collectedItem->name(), collectedItem); } }; typedef Collection<Scope> ScopeCollection; |