diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /lib/kotext/KoRichText.cpp | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/kotext/KoRichText.cpp')
-rw-r--r-- | lib/kotext/KoRichText.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kotext/KoRichText.cpp b/lib/kotext/KoRichText.cpp index 5df4c93d..7b51bb4f 100644 --- a/lib/kotext/KoRichText.cpp +++ b/lib/kotext/KoRichText.cpp @@ -933,7 +933,7 @@ bool KoTextCursor::removePreviousChar() // shouldn't be needed, just to make sure. fixCursorPosition(); string->format( -1, TRUE ); - //else if ( string->document() && string->document()->tqparent() ) + //else if ( string->document() && string->document()->parent() ) // string->document()->nextDoubleBuffered = TRUE; return FALSE; } else if ( string->prev() ) { @@ -952,7 +952,7 @@ bool KoTextCursor::remove() int next = string->string()->nextCursorPosition( idx ); string->remove( idx, next-idx ); string->format( -1, TRUE ); - //else if ( doc && doc->tqparent() ) + //else if ( doc && doc->parent() ) // doc->nextDoubleBuffered = TRUE; return FALSE; } else if ( string->next() ) { @@ -990,7 +990,7 @@ void KoTextCursor::killLine() return; string->remove( idx, string->length() - idx - 1 ); string->format( -1, TRUE ); - //else if ( doc && doc->tqparent() ) + //else if ( doc && doc->parent() ) //doc->nextDoubleBuffered = TRUE; } @@ -1690,7 +1690,7 @@ int KoTextFormatterBase::formatVertically( KoTextDocument* doc, KoTextParag* par // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ KoTextCustomItem::KoTextCustomItem( KoTextDocument *p ) - : width(-1), height(0), tqparent(p), xpos(0), ypos(-1), parag(0) + : width(-1), height(0), parent(p), xpos(0), ypos(-1), parag(0) { m_deleted = false; // added for kotext } |