summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-05-31 11:45:25 +0200
committerOlivier Goffart <olivier.goffart@nokia.com>2010-05-31 12:30:58 +0200
commite845c0d7a8ed33f2aa2a3ae5ebce931ea2043037 (patch)
tree2b872c1876da12cc48aadf8d18a1bb57fb38a4ad /tools
parent3860340918846b5b156ba8e018d12cfe90461208 (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/porting/src/codemodel.h b/tools/porting/src/codemodel.h
index cb3088f6f0..04ad178dc4 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;