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/KWPartFrameSet.cpp | |
parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kword/KWPartFrameSet.cpp')
-rw-r--r-- | kword/KWPartFrameSet.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kword/KWPartFrameSet.cpp b/kword/KWPartFrameSet.cpp index fc257709..33203d0b 100644 --- a/kword/KWPartFrameSet.cpp +++ b/kword/KWPartFrameSet.cpp @@ -137,9 +137,9 @@ void KWPartFrameSet::slotChildChanged() KWFrame *frame = listFrame.current(); if ( frame ) { - frame->setRect( KoRect::fromTQRect( getChild()->tqgeometry() ) ); + frame->setRect( KoRect::fromTQRect( getChild()->geometry() ) ); - //kdDebug(32001) << "KWPartFrameSet::slotChildChanged child's tqgeometry " << getChild()->tqgeometry() + //kdDebug(32001) << "KWPartFrameSet::slotChildChanged child's geometry " << getChild()->geometry() // << " frame set to " << *frame << endl; m_doc->frameChanged( frame ); //there is just a frame @@ -237,7 +237,7 @@ void KWPartFrameSet::printDebug() kdDebug() << " Url : " << getChild()->document()->url().url()<<endl; else kdWarning() << "NO DOCUMENT" << endl; - kdDebug() << " Rectangle : " << getChild()->tqgeometry().x() << "," << getChild()->tqgeometry().y() << " " << getChild()->tqgeometry().width() << "x" << getChild()->tqgeometry().height() << endl; + kdDebug() << " Rectangle : " << getChild()->geometry().x() << "," << getChild()->geometry().y() << " " << getChild()->geometry().width() << "x" << getChild()->geometry().height() << endl; } else kdWarning() << "NO CHILD" << endl; } @@ -335,12 +335,12 @@ KWDocumentChild::~KWDocumentChild() { } -void KWDocumentChild::setDocument( KoDocument *doc, const TQRect &tqgeometry ) +void KWDocumentChild::setDocument( KoDocument *doc, const TQRect &geometry ) { // When hitTest returns true, we want to activate the part right away. // PartManager supports selecting parts, but not in a doc/view separated way. doc->setSelectable( false ); - KoDocumentChild::setDocument( doc, tqgeometry ); + KoDocumentChild::setDocument( doc, geometry ); } KoDocument* KWDocumentChild::hitTest( const TQPoint& p, const TQWMatrix& _matrix ) |