aboutsummaryrefslogtreecommitdiffstats
path: root/typesystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'typesystem.cpp')
-rw-r--r--typesystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/typesystem.cpp b/typesystem.cpp
index 82c903eb2..31c4f547e 100644
--- a/typesystem.cpp
+++ b/typesystem.cpp
@@ -1735,8 +1735,8 @@ QString TemplateInstance::expandCode() const
QString CodeSnipAbstract::code() const
{
QString res;
- foreach (CodeSnipFragment *codeFrag, codeList)
- res.append(codeFrag->code());
+ foreach (CodeSnipFragment codeFrag, codeList)
+ res.append(codeFrag.code());
return res;
}