summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmparser.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commitda4be7880ff1de6415ab6256afd2514e64f5fa2e (patch)
tree0862c14883af0435b012f6f592221fc167ed7d91 /kpovmodeler/pmparser.cpp
parentd0a269b9b0361bf71c5dd5787be0839f9dcace8c (diff)
downloadtdegraphics-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.cpp16
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;
}