summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmcomment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmcomment.cpp')
-rw-r--r--kpovmodeler/pmcomment.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpovmodeler/pmcomment.cpp b/kpovmodeler/pmcomment.cpp
index 90c817fd..7d12dfbc 100644
--- a/kpovmodeler/pmcomment.cpp
+++ b/kpovmodeler/pmcomment.cpp
@@ -108,11 +108,11 @@ void PMComment::setText( const TQString& text )
}
}
-PMMetaObject* PMComment::metaObject( ) const
+PMMetaObject* PMComment::tqmetaObject( ) const
{
if( !s_pMetaObject )
{
- s_pMetaObject = new PMMetaObject( "Comment", Base::metaObject( ),
+ s_pMetaObject = new PMMetaObject( "Comment", Base::tqmetaObject( ),
createNewComment );
s_pMetaObject->addProperty(
new PMCommentProperty( "text", &PMComment::setText, &PMComment::text ) );
@@ -143,9 +143,9 @@ void PMComment::readAttributes( const PMXMLHelper& h )
m_text = e.toText( ).data( );
}
-PMDialogEditBase* PMComment::editWidget( TQWidget* parent ) const
+PMDialogEditBase* PMComment::editWidget( TQWidget* tqparent ) const
{
- return new PMCommentEdit( parent );
+ return new PMCommentEdit( tqparent );
}
void PMComment::restoreMemento( PMMemento* s )