summaryrefslogtreecommitdiffstats
path: root/lib/kformula/kformuladocument.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kformula/kformuladocument.cc')
-rw-r--r--lib/kformula/kformuladocument.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kformula/kformuladocument.cc b/lib/kformula/kformuladocument.cc
index 9caa66cb..ecd621ee 100644
--- a/lib/kformula/kformuladocument.cc
+++ b/lib/kformula/kformuladocument.cc
@@ -200,7 +200,7 @@ TQDomDocument Document::createDomDocument()
}
/**
- * Create a MathML Dom Document, deprecates KFO Dom Document for internal tqlayout
+ * Create a MathML Dom Document, deprecates KFO Dom Document for internal layout
* TODO: Shouldn't this go to KoDocument ?
*/
TQDomDocument Document::createMathMLDomDocument()
@@ -969,7 +969,7 @@ void DocumentWrapper::insertSymbol()
{
if ( hasFormula() &&
m_document->m_contextStyle->symbolTable().contains( m_selectedName ) ) {
- TQChar ch = m_document->m_contextStyle->symbolTable().tqunicode( m_selectedName );
+ TQChar ch = m_document->m_contextStyle->symbolTable().unicode( m_selectedName );
if ( ch != TQChar::null ) {
TextCharRequest r( ch, true );
formula()->performRequest( &r );
@@ -985,7 +985,7 @@ void DocumentWrapper::insertSymbol( TQString name )
{
if ( hasFormula() ) {
if ( m_document->m_contextStyle->symbolTable().contains( name ) ) {
- TQChar ch = m_document->m_contextStyle->symbolTable().tqunicode( name );
+ TQChar ch = m_document->m_contextStyle->symbolTable().unicode( name );
if ( ch != TQChar::null ) {
TextCharRequest r( ch, true );
formula()->performRequest( &r );
@@ -1174,7 +1174,7 @@ void DocumentWrapper::initSymbolNamesAction()
for ( TQStringList::Iterator it = names.begin();
it != names.end();
++it, ++i ) {
- chars[ i ] = st.tqunicode( *it );
+ chars[ i ] = st.unicode( *it );
}
m_symbolNamesAction->setSymbols( names, m_document->m_contextStyle->getMathFont(), chars );
m_selectedName = names[0];