diff options
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"; } |