diff options
Diffstat (limited to 'lib/kotext/KoTextObject.h')
-rw-r--r-- | lib/kotext/KoTextObject.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kotext/KoTextObject.h b/lib/kotext/KoTextObject.h index a463d0fc..15574075 100644 --- a/lib/kotext/KoTextObject.h +++ b/lib/kotext/KoTextObject.h @@ -192,13 +192,13 @@ public: * @param defaultHyphenation the default setting for hyphenation (see KoTextFormatCollection) * @param defaultStyle the style to use by default (initial pararaph, and when deleting a used style) * @param tabStopWidth the global value for the tabstop width - * @param tqparent tqparent widget for this object + * @param parent parent widget for this object * @param name name for this object * */ KoTextObject( KoTextZoomHandler *zh, const TQFont& defaultFont, const TQString &defaultLanguage, bool defaultHyphenation, KoParagStyle* defaultStyle, int tabStopWidth = -1, - TQObject* tqparent = 0, const char *name = 0 ); + TQObject* parent = 0, const char *name = 0 ); /** Alternative constructor. * This constructor allows to use a derived class from KoTextDocument. @@ -206,11 +206,11 @@ public: * @param textdoc the text document to use in this text object. Ownership is transferred * to the text object. * @param defaultStyle the style to use by default (initial pararaph, and when deleting a used style) - * @param tqparent tqparent widget for this object + * @param parent parent widget for this object * @param name name for this object */ KoTextObject( KoTextDocument *textdoc, KoParagStyle* defaultStyle, - TQObject* tqparent = 0, const char *name = 0 ); + TQObject* parent = 0, const char *name = 0 ); virtual ~KoTextObject(); @@ -562,7 +562,7 @@ public: // made public for KWTextFrameSet... int eid; // id of last parag int index; // index (for insertion/deletion) Type type; // type of command - KoTextObject* textobj; // tqparent + KoTextObject* textobj; // parent CustomItemsMap customItemsMap; // character position -> qtextcustomitem TQValueList<KoParagLayout> oldParagLayouts; KoParagLayout newParagLayout; |