diff options
Diffstat (limited to 'src/textdocument.h')
-rw-r--r-- | src/textdocument.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textdocument.h b/src/textdocument.h index 18e4e81..edd8850 100644 --- a/src/textdocument.h +++ b/src/textdocument.h @@ -59,7 +59,7 @@ public: * it if successful, or 0 if it failed. * @returns pointer to constructed object, or 0 if there was a problem */ - static TextDocument *constructTextDocument( const TQString& caption, KTechlab *tqparent, const char *name = 0L ); + static TextDocument *constructTextDocument( const TQString& caption, KTechlab *parent, const char *name = 0L ); /** * @returns the guessed code type that this file is */ @@ -133,7 +133,7 @@ public: virtual void print(); virtual void setModified( bool modified ); - Kate::View* createKateView( TQWidget *tqparent, const char *name = 0l ); + Kate::View* createKateView( TQWidget *parent, const char *name = 0l ); virtual void undo(); virtual void redo(); @@ -229,7 +229,7 @@ private slots: void slotSelectionmChanged(); private: - TextDocument( const TQString& caption, KTechlab *tqparent, const char *name = 0L ); + TextDocument( const TQString& caption, KTechlab *parent, const char *name = 0L ); bool m_constructorSuccessful; CodeType m_guessedCodeType; TQPtrList<KAction> m_bookmarkActions; |