diff options
Diffstat (limited to 'kword/KWDocument.h')
-rw-r--r-- | kword/KWDocument.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kword/KWDocument.h b/kword/KWDocument.h index 983b3add8..fcda863fa 100644 --- a/kword/KWDocument.h +++ b/kword/KWDocument.h @@ -131,7 +131,7 @@ public: friend class KWOasisLoader; friend class KWStartupWidget; - KWDocument( TQWidget *parentWidget = 0, const char *widname = 0, TQObject* tqparent = 0, const char* name = 0, bool singleViewMode = false ); + KWDocument( TQWidget *parentWidget = 0, const char *widname = 0, TQObject* parent = 0, const char* name = 0, bool singleViewMode = false ); ~KWDocument(); enum ProcessingType {WP = 0, DTP = 1}; @@ -169,7 +169,7 @@ public: /** * Return a drag object with the selected text */ - TQDragObject* dragSelected( TQWidget *tqparent, KWTextFrameSet* fs ); + TQDragObject* dragSelected( TQWidget *parent, KWTextFrameSet* fs ); virtual bool loadXML( TQIODevice *, const TQDomDocument & dom ); virtual bool loadChildren( KoStore *store ); @@ -822,7 +822,7 @@ protected: /// fix up Z-order for import from older kword versions. void fixZOrders(); TQString checkSectionTitleInParag( KoTextParag* parag, KWTextFrameSet*, int pageNum ) const; - KoView* createViewInstance( TQWidget* tqparent, const char* name ); + KoView* createViewInstance( TQWidget* parent, const char* name ); virtual bool completeLoading( KoStore* store ); virtual bool completeSaving( KoStore *store ); @@ -846,7 +846,7 @@ protected: TQValueList<KoPictureKey> savePictureList(); /// helper method for the 2 different dragSelected() versions - TQDragObject* dragSelectedPrivate( TQWidget *tqparent, const TQValueList<KWFrameView*> &selectedFrames, KWTextFrameSet* fs); + TQDragObject* dragSelectedPrivate( TQWidget *parent, const TQValueList<KWFrameView*> &selectedFrames, KWTextFrameSet* fs); /** * Save the whole document, or just the selection, into OASIS format * When saving the selection, also return the data as plain text and/or plain picture, @@ -871,7 +871,7 @@ protected: const TQValueList<KWFrameView*> &selectedFrames, TQString* plainText ) const; // inherited from KoDocument - TQWidget* createCustomDocumentWidget(TQWidget *tqparent); + TQWidget* createCustomDocumentWidget(TQWidget *parent); private: void clear(); @@ -879,7 +879,7 @@ private: class FramesChangedHandler { public: - FramesChangedHandler(KWDocument *tqparent); + FramesChangedHandler(KWDocument *parent); void addFrame(KWFrame*); void addFrameSet(KWFrameSet*); void execute(); |