summaryrefslogtreecommitdiffstats
path: root/lib/kformula/tokenelement.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kformula/tokenelement.cc')
-rw-r--r--lib/kformula/tokenelement.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kformula/tokenelement.cc b/lib/kformula/tokenelement.cc
index 6addc385..272af51f 100644
--- a/lib/kformula/tokenelement.cc
+++ b/lib/kformula/tokenelement.cc
@@ -67,7 +67,7 @@ int TokenElement::buildChildrenFromMathMLDom(TQPtrList<BasicElement>& list, TQDo
kdWarning() << "Invalid entity refererence: " << entity << endl;
}
else {
- TextElement* child = new TextElement( TQChar( pos->unicode ) );
+ TextElement* child = new TextElement( TQChar( pos->tqunicode ) );
child->setParent(this);
child->setCharFamily( charFamily() );
child->setCharStyle( charStyle() );
@@ -97,7 +97,7 @@ int TokenElement::buildChildrenFromMathMLDom(TQPtrList<BasicElement>& list, TQDo
n = n.nextSibling();
}
// parse();
- kdWarning() << "Num of children " << list.count() << endl;
+ kdWarning() << "Num of tqchildren " << list.count() << endl;
return 1;
}