diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
commit | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch) | |
tree | 1fc538e179833e62caec21956bfe47a252be5a72 /kword/KWTextParag.cpp | |
parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kword/KWTextParag.cpp')
-rw-r--r-- | kword/KWTextParag.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kword/KWTextParag.cpp b/kword/KWTextParag.cpp index d50e98a0..0b1aaa9b 100644 --- a/kword/KWTextParag.cpp +++ b/kword/KWTextParag.cpp @@ -109,9 +109,9 @@ void KWTextParag::drawFormattingChars( TQPainter &painter, int start, int len, void KWTextParag::setPageBreaking( int pb ) { m_layout.pageBreaking = pb; - tqinvalidate(0); + invalidate(0); if ( next() && ( pb & KoParagLayout::HardFrameBreakAfter ) ) - next()->tqinvalidate(0); + next()->invalidate(0); } KWTextDocument * KWTextParag::kwTextDocument() const @@ -385,7 +385,7 @@ void KWTextParag::save( TQDomElement &parentElem, int from /* default 0 */, TQDomElement layoutElem = doc.createElement( "LAYOUT" ); paragElem.appendChild( layoutElem ); - // save with the real tqalignment (left or right, not auto) + // save with the real alignment (left or right, not auto) m_layout.saveParagLayout( layoutElem, resolveAlignment() ); // Paragraph's format @@ -601,7 +601,7 @@ void KWTextParag::load( TQDomElement &attributes ) loadFormatting( attributes ); setChanged( true ); - tqinvalidate( 0 ); + invalidate( 0 ); } void KWTextParag::loadFormatting( TQDomElement &attributes, int offset, bool loadFootNote ) |