From d8762de95349dc6edaa34db9bf699b367c1af6b1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kig/filters/native-filter.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kig/filters/native-filter.cc') diff --git a/kig/filters/native-filter.cc b/kig/filters/native-filter.cc index 9e92130d..3afaf0e1 100644 --- a/kig/filters/native-filter.cc +++ b/kig/filters/native-filter.cc @@ -318,7 +318,7 @@ KigDocument* KigFilterNative::load04( const TQString& file, const TQDomElement& if ( i->parents.size() != 1 ) KIG_FILTER_PARSE_ERROR; ObjectCalcer* tqparent = retcalcers[i->parents[0] -1]; QCStringList propnames = tqparent->imp()->propertiesInternalNames(); - int propid = propnames.tqfindIndex( propname ); + int propid = propnames.findIndex( propname ); if ( propid == -1 ) KIG_FILTER_PARSE_ERROR; @@ -331,7 +331,7 @@ KigDocument* KigFilterNative::load04( const TQString& file, const TQDomElement& KIG_FILTER_PARSE_ERROR; const ObjectType* type = - ObjectTypeFactory::instance()->tqfind( tmp.latin1() ); + ObjectTypeFactory::instance()->find( tmp.latin1() ); if ( !type ) { notSupported( file, i18n( "This Kig file uses an object of type \"%1\", " @@ -469,7 +469,7 @@ KigDocument* KigFilterNative::load07( const TQString& file, const TQDomElement& TQCString propname = e.attribute( "which" ).latin1(); ObjectCalcer* tqparent = parents[0]; - int propid = tqparent->imp()->propertiesInternalNames().tqfindIndex( propname ); + int propid = tqparent->imp()->propertiesInternalNames().findIndex( propname ); if ( propid == -1 ) KIG_FILTER_PARSE_ERROR; o = new ObjectPropertyCalcer( tqparent, propid ); @@ -478,7 +478,7 @@ KigDocument* KigFilterNative::load07( const TQString& file, const TQDomElement& { TQString tmp = e.attribute( "type" ); const ObjectType* type = - ObjectTypeFactory::instance()->tqfind( tmp.latin1() ); + ObjectTypeFactory::instance()->find( tmp.latin1() ); if ( ! type ) { notSupported( file, i18n( "This Kig file uses an object of type \"%1\", " -- cgit v1.2.1