diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:05:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:05:41 -0600 |
commit | 2d6954f69caf63ed5057bd8e1405a65d7d970292 (patch) | |
tree | 88e6436b2e81d4e68313f02a9021054252e14cc4 /kword/KWViewMode.h | |
parent | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (diff) | |
download | koffice-2d6954f69caf63ed5057bd8e1405a65d7d970292.tar.gz koffice-2d6954f69caf63ed5057bd8e1405a65d7d970292.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'kword/KWViewMode.h')
-rw-r--r-- | kword/KWViewMode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kword/KWViewMode.h b/kword/KWViewMode.h index fc78779a..fa0ec1d9 100644 --- a/kword/KWViewMode.h +++ b/kword/KWViewMode.h @@ -85,9 +85,9 @@ public: /** The result of this is passed to setFrameStartEnd for both rulers * (after adjustement with pageCorner()) */ virtual TQRect rulerFrameRect(); - /** Called when the page tqlayout is set, or changes. + /** Called when the page layout is set, or changes. * Usually this is directly passed to KoRuler (for page-based viewmodes) */ - virtual void setPageLayout( KoRuler* hRuler, KoRuler* vRuler, const KoPageLayout& tqlayout ); + virtual void setPageLayout( KoRuler* hRuler, KoRuler* vRuler, const KoPageLayout& layout ); virtual void drawPageBorders( TQPainter * painter, const TQRect & crect, const TQRegion & emptySpaceRegion ) = 0; @@ -273,7 +273,7 @@ public: // There is no page concept. Keep everything relative to (0,0) virtual TQPoint pageCorner() { return TQPoint( 0, 0 ); } virtual TQRect rulerFrameRect(); - virtual void setPageLayout( KoRuler* hRuler, KoRuler* vRuler, const KoPageLayout& tqlayout ); + virtual void setPageLayout( KoRuler* hRuler, KoRuler* vRuler, const KoPageLayout& layout ); virtual void drawPageBorders( TQPainter * painter, const TQRect & crect, const TQRegion & emptySpaceRegion ); virtual const TQString type() const { return "ModeText"; } |