diff options
Diffstat (limited to 'kig/filters/native-filter.cc')
-rw-r--r-- | kig/filters/native-filter.cc | 8 |
1 files changed, 4 insertions, 4 deletions
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\", " |