summaryrefslogtreecommitdiffstats
path: root/lib/kformula/sequenceelement.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kformula/sequenceelement.cc')
-rw-r--r--lib/kformula/sequenceelement.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kformula/sequenceelement.cc b/lib/kformula/sequenceelement.cc
index c44c1b50..e3573174 100644
--- a/lib/kformula/sequenceelement.cc
+++ b/lib/kformula/sequenceelement.cc
@@ -1184,7 +1184,7 @@ KCommand* SequenceElement::buildCommand( Container* container, Request* request
const SymbolTable& table = container->document()->getSymbolTable();
if (table.greekLetters().find(element->getCharacter()) != -1) {
KFCReplace* command = new KFCReplace( i18n( "Change Char to Symbol" ), container );
- TextElement* symbol = creationStrategy->createTextElement( table.tqunicodeFromSymbolFont( element->getCharacter() ), true );
+ TextElement* symbol = creationStrategy->createTextElement( table.unicodeFromSymbolFont( element->getCharacter() ), true );
command->addElement( symbol );
return command;
}
@@ -1311,8 +1311,8 @@ KCommand* SequenceElement::input( Container* container, TQKeyEvent* event )
KCommand* SequenceElement::input( Container* container, TQChar ch )
{
- int tqunicode = ch.tqunicode();
- switch (tqunicode) {
+ int unicode = ch.unicode();
+ switch (unicode) {
case '(': {
BracketRequest r( container->document()->leftBracketChar(),
container->document()->rightBracketChar() );
@@ -1700,8 +1700,8 @@ KCommand* NameSequence::buildCommand( Container* container, Request* request )
KCommand* NameSequence::input( Container* container, TQChar ch )
{
- int tqunicode = ch.tqunicode();
- switch (tqunicode) {
+ int unicode = ch.unicode();
+ switch (unicode) {
case '(':
case '[':
case '|':
@@ -1746,12 +1746,12 @@ void NameSequence::setElementType( ElementType* t )
BasicElement* NameSequence::replaceElement( const SymbolTable& table )
{
TQString name = buildName();
- TQChar ch = table.tqunicode( name );
+ TQChar ch = table.unicode( name );
if ( !ch.isNull() ) {
return new TextElement( ch, true );
}
else {
- ch = table.tqunicode( i18n( name.latin1() ) );
+ ch = table.unicode( i18n( name.latin1() ) );
if ( !ch.isNull() ) {
return new TextElement( ch, true );
}