summaryrefslogtreecommitdiffstats
path: root/tools/porting/src/codemodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/porting/src/codemodel.h')
-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 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;