summaryrefslogtreecommitdiffstats
path: root/arts/runtime/structurebuilder_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'arts/runtime/structurebuilder_impl.cc')
-rw-r--r--arts/runtime/structurebuilder_impl.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/arts/runtime/structurebuilder_impl.cc b/arts/runtime/structurebuilder_impl.cc
index 43e5485c..c2e217e8 100644
--- a/arts/runtime/structurebuilder_impl.cc
+++ b/arts/runtime/structurebuilder_impl.cc
@@ -96,7 +96,7 @@ ModuleDef StructureBuilder_impl::createTypeInfo(StructureDesc structure)
{
const Arts::PortType& type = pi->type();
- // if we inherited the port from a parent interface, we don't need to
+ // if we inherited the port from a tqparent interface, we don't need to
// list it in our interface description
if(pi->inheritedInterface().empty())
{
@@ -236,12 +236,12 @@ Structure_impl::Structure_impl(StructureDesc structureDesc,
for(ci = connections->begin(); ci != connections->end(); ci++)
{
- if(!ci->parent().isNull()) // structureport otherwise
+ if(!ci->tqparent().isNull()) // structureport otherwise
{
- Object& dest = moduleMap[ci->parent().ID()];
+ Object& dest = moduleMap[ci->tqparent().ID()];
#ifdef STRUCTBUILDER_DEBUG
cout << "connect " << mi->name() << "." << pi->name()
- << " to " << ci->parent().name()
+ << " to " << ci->tqparent().name()
<< "." << ci->name() << endl;
#endif
connect(object,pd.name(),dest,ci->name());
@@ -271,10 +271,10 @@ Structure_impl::Structure_impl(StructureDesc structureDesc,
for(ci = connections->begin(); ci != connections->end(); ci++)
{
- Object& dest = moduleMap[ci->parent().ID()];
+ Object& dest = moduleMap[ci->tqparent().ID()];
#ifdef STRUCTBUILDER_DEBUG
cout << "virtualize " << pi->name()
- << " to " << ci->parent().name() << "." << ci->name()
+ << " to " << ci->tqparent().name() << "." << ci->name()
<< endl;
#endif