diff options
Diffstat (limited to 'kword/KWDocument.h')
-rw-r--r-- | kword/KWDocument.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kword/KWDocument.h b/kword/KWDocument.h index fcda863f..1a9aa16e 100644 --- a/kword/KWDocument.h +++ b/kword/KWDocument.h @@ -214,9 +214,9 @@ public: /// because KoDocument:insertChild is protected. KWDocumentChild* createChildDoc( const KoRect& rect, KoDocument* childDoc ); - void setPageLayout( const KoPageLayout& tqlayout, const KoColumns& cl, const KoKWHeaderFooter& hf, bool updateViews = true ); + void setPageLayout( const KoPageLayout& layout, const KoColumns& cl, const KoKWHeaderFooter& hf, bool updateViews = true ); - void getPageLayout( KoPageLayout& tqlayout, KoColumns& cl, KoKWHeaderFooter& hf ); + void getPageLayout( KoPageLayout& layout, KoColumns& cl, KoKWHeaderFooter& hf ); KWTextFrameSet * textFrameSet ( unsigned int num ) const; /// Return the frameset number @p num @@ -268,12 +268,12 @@ public: /** - * schedule a tqrepaint of all views but don't execute immediately + * schedule a repaint of all views but don't execute immediately */ void delayedRepaintAllViews(); /** - * schedule a frame tqlayout (e.g. for footnotes) but don't execute immediately + * schedule a frame layout (e.g. for footnotes) but don't execute immediately */ void delayedRecalcFrames( int fromPage ); @@ -437,7 +437,7 @@ public: //int applyStyleChangeMask() { return styleMask; } //void setApplyStyleChangeMask( int f ) { styleMask = f; } - // paragLayoutChanged is a set of flags for the parag tqlayout - see the enum in KWParagLayout + // paragLayoutChanged is a set of flags for the parag layout - see the enum in KWParagLayout // formatChanged is a set of flags from KoTextFormat // If both are -1, it means the style has been deleted. void applyStyleChange( KoStyleChangeDefMap changed ); @@ -519,7 +519,7 @@ public: void newZoomAndResolution( bool updateViews, bool forPrint ); /** - * Due to the way the text formatter works (it caches tqlayout information in + * Due to the way the text formatter works (it caches layout information in * the paragraphs and characters), we currently can't have one viewmode per view. * It has to be the same for all views. */ @@ -565,8 +565,8 @@ public: void printDebug(); #endif - /** calls tqlayout() on all framesets */ - void tqlayout(); + /** calls layout() on all framesets */ + void layout(); // This settings has to be here [instead of KWView] because we need to // format paragraphs slightly differently (to add room for the CR char) @@ -764,7 +764,7 @@ public: KWBgSpellCheck* backSpeller() const { return m_bgSpellCheck; } - /// Load the given page tqlayout; public for KWTextParag + /// Load the given page layout; public for KWTextParag bool loadOasisPageLayout( const TQString& masterPageName, KoOasisContext& context ); // end of public methods @@ -773,7 +773,7 @@ signals: /// This is emitted by setPageLayout if updateViews=true void pageLayoutChanged( const KoPageLayout& ); - /// Emitted when the scrollview contents must be resized (e.g. new page, new tqlayout...) + /// Emitted when the scrollview contents must be resized (e.g. new page, new layout...) void newContentsSize(); /** This is emitted when the height of the text in the main frameset changes @@ -796,8 +796,8 @@ public slots: void slotRepaintChanged( KWFrameSet * frameset ); void framesChanged( const TQValueList<KWFrame*> &frames); - /** calls tqinvalidate() on all framesets */ - void tqinvalidate(const KWFrameSet *skipThisFrameSet=0); + /** calls invalidate() on all framesets */ + void invalidate(const KWFrameSet *skipThisFrameSet=0); virtual void initEmpty(); |