diff options
Diffstat (limited to 'lib/kotext/KoRichText.cpp')
-rw-r--r-- | lib/kotext/KoRichText.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kotext/KoRichText.cpp b/lib/kotext/KoRichText.cpp index dc6c6922..157f79a8 100644 --- a/lib/kotext/KoRichText.cpp +++ b/lib/kotext/KoRichText.cpp @@ -939,7 +939,7 @@ bool KoTextCursor::removePreviousChar() } else if ( string->prev() ) { string = string->prev(); string->join( string->next() ); - string->tqinvalidateCounters(); + string->invalidateCounters(); return TRUE; } return FALSE; @@ -965,7 +965,7 @@ bool KoTextCursor::remove() string = p; string->tqinvalidate( 0 ); //// kotext - string->tqinvalidateCounters(); + string->invalidateCounters(); //// KoTextParag *s = string; while ( s ) { @@ -1242,7 +1242,7 @@ void KoTextString::checkBidi() const const KoTextStringChar *start = data.data(); const KoTextStringChar *end = start + length; - // determines the properties we need for tqlayouting + // determines the properties we need for layouting #ifdef USE_QT4 #warning "KoTextString::checkBidi() for Qt4 partially implemented" printf("[WARNING] KoTextString::checkBidi() partially implemented\n\r"); |