diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | da4be7880ff1de6415ab6256afd2514e64f5fa2e (patch) | |
tree | 0862c14883af0435b012f6f592221fc167ed7d91 /kpovmodeler/pmparser.cpp | |
parent | d0a269b9b0361bf71c5dd5787be0839f9dcace8c (diff) | |
download | tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.tar.gz tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmparser.cpp')
-rw-r--r-- | kpovmodeler/pmparser.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kpovmodeler/pmparser.cpp b/kpovmodeler/pmparser.cpp index e2801943..99398ce7 100644 --- a/kpovmodeler/pmparser.cpp +++ b/kpovmodeler/pmparser.cpp @@ -304,9 +304,9 @@ bool PMParser::insertChild( PMObject* child, PMObject* tqparent ) void PMParser::checkID( PMDeclare* decl ) { PMSymbolTable* st = m_pPart->symbolTable( ); - PMSymbol* s = m_pLocalST.tqfind( decl->id( ) ); + PMSymbol* s = m_pLocalST.find( decl->id( ) ); if( !s ) - s = st->tqfind( decl->id( ) ); + s = st->find( decl->id( ) ); if( s ) { @@ -336,7 +336,7 @@ void PMParser::checkID( PMDeclare* decl ) void PMParser::checkID( const TQString& id, const PMValue& v ) { PMSymbolTable* st = m_pPart->symbolTable( ); - PMSymbol* s = m_pLocalST.tqfind( id ); + PMSymbol* s = m_pLocalST.find( id ); if( s ) { @@ -374,9 +374,9 @@ PMDeclare* PMParser::checkLink( const TQString& id ) bool ok = false; // is object declared? - PMSymbol* s = m_pLocalST.tqfind( id ); + PMSymbol* s = m_pLocalST.find( id ); if( !s ) - s = t->tqfind( id ); + s = t->find( id ); if( !s ) printError( i18n( "Undefined object \"%1\"." ).tqarg( id ) ); @@ -386,7 +386,7 @@ PMDeclare* PMParser::checkLink( const TQString& id ) { // the object is declared // is the id already in m_okDeclares - bool* lok = m_okDeclares.tqfind( id ); + bool* lok = m_okDeclares.find( id ); if( lok ) ok = true; else @@ -425,9 +425,9 @@ PMDeclare* PMParser::checkLink( const TQString& id ) PMSymbol* PMParser::getSymbol( const TQString& id ) const { - PMSymbol* s = m_pLocalST.tqfind( id ); + PMSymbol* s = m_pLocalST.find( id ); if( !s ) - s = m_pPart->symbolTable( )->tqfind( id ); + s = m_pPart->symbolTable( )->find( id ); return s; } |