summaryrefslogtreecommitdiffstats
path: root/languages/cpp/simpletypefunction.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/simpletypefunction.h')
-rw-r--r--languages/cpp/simpletypefunction.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/simpletypefunction.h b/languages/cpp/simpletypefunction.h
index 86f32a65..90b5fcab 100644
--- a/languages/cpp/simpletypefunction.h
+++ b/languages/cpp/simpletypefunction.h
@@ -139,7 +139,7 @@ public:
///paramInfo now contains the information for all implicit types
}
- return this->tqparent()->locateDecType( f->replaceTemplateParams( rt, paramInfo ) );
+ return this->parent()->locateDecType( f->replaceTemplateParams( rt, paramInfo ) );
} else {
ifVerbose( dbg() << "failed to find a fitting overloaded method" << endl );
}
@@ -239,7 +239,7 @@ protected:
TypeDesc m_desc;
TypePointer m_parent;
- CodeModelBuildInfo( ItemDom item, const TypeDesc& desc, TypePointer tqparent ) : m_item( item ), m_desc( desc ), m_parent( tqparent ) {
+ CodeModelBuildInfo( ItemDom item, const TypeDesc& desc, TypePointer parent ) : m_item( item ), m_desc( desc ), m_parent( parent ) {
}
virtual TypePointer build();
@@ -281,9 +281,9 @@ public:
TypeDesc m_desc;
TypePointer m_parent;
- CodeModelFunctionBuildInfo( FunctionList items, TypeDesc& desc, TypePointer tqparent ) : m_items( items ), m_desc( desc ), m_parent( tqparent ) {
+ CodeModelFunctionBuildInfo( FunctionList items, TypeDesc& desc, TypePointer parent ) : m_items( items ), m_desc( desc ), m_parent( parent ) {
}
- CodeModelFunctionBuildInfo( FunctionDefinitionList items, TypeDesc& desc, TypePointer tqparent );
+ CodeModelFunctionBuildInfo( FunctionDefinitionList items, TypeDesc& desc, TypePointer parent );
virtual TypePointer build();
};
@@ -317,7 +317,7 @@ public:
TypeDesc m_desc;
TypePointer m_parent;
- CatalogFunctionBuildInfo( TQValueList<Tag> tags, TypeDesc& desc, TypePointer tqparent ) : m_tags( tags ), m_desc( desc ), m_parent( tqparent ) {
+ CatalogFunctionBuildInfo( TQValueList<Tag> tags, TypeDesc& desc, TypePointer parent ) : m_tags( tags ), m_desc( desc ), m_parent( parent ) {
}
virtual TypePointer build();