diff options
Diffstat (limited to 'kword/KWFrameSet.h')
-rw-r--r-- | kword/KWFrameSet.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kword/KWFrameSet.h b/kword/KWFrameSet.h index d4c1bae9..be9337c0 100644 --- a/kword/KWFrameSet.h +++ b/kword/KWFrameSet.h @@ -190,7 +190,7 @@ public: * @param crect The rectangle (in scrollview "contents coordinates", i.e. "view coords") * to be painted * @param cg The colorgroup from which to get the colors - * @param onlyChanged If true, only redraw what has changed (see KWCanvas::tqrepaintChanged) + * @param onlyChanged If true, only redraw what has changed (see KWCanvas::repaintChanged) * @param resetChanged If true, set the changed flag to false after drawing. * @param edit If set, this frameset is being edited, so a cursor is needed. * @param viewMode For coordinate conversion, always set. @@ -224,7 +224,7 @@ public: * @param cg The colorgroup from which to get the colors * @param edit If set, this frameset is being edited, so a cursor is needed. * @param viewMode For coordinate conversion, always set. - * @param crect rectangle to be tqrepainted, in view coordinates. Includes padding. + * @param crect rectangle to be repainted, in view coordinates. Includes padding. */ void drawFrameAndBorders( KWFrame *frame, TQPainter *painter, const TQRect &crect, @@ -246,16 +246,16 @@ public: /** * Draw a particular frame of this frameset. * This is called by drawContents and is what framesets must reimplement. - * @param fcrect rectangle to be tqrepainted, in the _frame_'s coordinate system, in pixels. + * @param fcrect rectangle to be repainted, in the _frame_'s coordinate system, in pixels. * Doesn't include padding. * - * @param crect rectangle to be tqrepainted, in view coordinates. Includes padding. + * @param crect rectangle to be repainted, in view coordinates. Includes padding. * Default implementation does double-buffering and calls drawFrameContents. * @param frame the frame to draw * @param painter the painter to draw to * @param settingsFrame The frame from which we take the settings (usually @p frame, but not with Copy behaviour) * @param cg The colorgroup from which to get the colors - * @param onlyChanged If true, only redraw what has changed (see KWCanvas::tqrepaintChanged) + * @param onlyChanged If true, only redraw what has changed (see KWCanvas::repaintChanged) * @param resetChanged If true, set the changed flag to false after drawing. * @param edit If set, this frameset is being edited, so a cursor is needed. * @param viewMode For coordinate conversion, always set. @@ -273,12 +273,12 @@ public: * You MUST reimplement one or the other, or you'll get infinite recursion ;) * * In this method, the painter has been translated to the frame's coordinate system - * @param fcrect rectangle to be tqrepainted, in the _frame_'s coordinate system, in pixels. + * @param fcrect rectangle to be repainted, in the _frame_'s coordinate system, in pixels. * Doesn't include padding. * @param frame the frame to draw * @param painter the painter to draw to * @param cg The colorgroup from which to get the colors - * @param onlyChanged If true, only redraw what has changed (see KWCanvas::tqrepaintChanged) + * @param onlyChanged If true, only redraw what has changed (see KWCanvas::repaintChanged) * @param resetChanged If true, set the changed flag to false after drawing. * @param edit If set, this frameset is being edited, so a cursor is needed. * @param viewMode For coordinate conversion, always set. @@ -457,7 +457,7 @@ signals: /// Emitted when something has changed in this frameset, /// so that all views tqrepaint it. KWDocument connects to it, /// and KWCanvas connects to KWDocument. - void tqrepaintChanged( KWFrameSet * frameset ); + void repaintChanged( KWFrameSet * frameset ); void sigFrameAdded(KWFrame*); void sigFrameRemoved(KWFrame*); |