diff options
Diffstat (limited to 'lib/kofficecore/KoDocumentInfo.cpp')
-rw-r--r-- | lib/kofficecore/KoDocumentInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kofficecore/KoDocumentInfo.cpp b/lib/kofficecore/KoDocumentInfo.cpp index f6a3fe69..cd4ecbaf 100644 --- a/lib/kofficecore/KoDocumentInfo.cpp +++ b/lib/kofficecore/KoDocumentInfo.cpp @@ -42,8 +42,8 @@ * *****************************************/ -KoDocumentInfo::KoDocumentInfo( TQObject* tqparent, const char* name ) - : TQObject( tqparent, name ) +KoDocumentInfo::KoDocumentInfo( TQObject* parent, const char* name ) + : TQObject( parent, name ) { (void)new KoDocumentInfoUserMetadata( this ); (void)new KoDocumentInfoAuthor( this ); @@ -194,8 +194,8 @@ TQString KoDocumentInfo::creator() const * *****************************************/ -KoDocumentInfoPage::KoDocumentInfoPage( TQObject* tqparent, const char* name ) - : TQObject( tqparent, name ) +KoDocumentInfoPage::KoDocumentInfoPage( TQObject* parent, const char* name ) + : TQObject( parent, name ) { } @@ -634,7 +634,7 @@ KoDocumentInfoAbout::KoDocumentInfoAbout( KoDocumentInfo* info ) void KoDocumentInfoAbout::saveParameters() { - KoDocument* doc = dynamic_cast< KoDocument* >( m_docInfo->tqparent() ); + KoDocument* doc = dynamic_cast< KoDocument* >( m_docInfo->parent() ); if ( m_firstSave && doc && !doc->isAutosaving() ) m_editingCycles++; m_modificationDate = TQDateTime::tqcurrentDateTime(); |