From b6edfe41c9395f2e20784cbf0e630af6426950a3 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/applications/koffice@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kivio/kiviopart/kivio_doc.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kivio/kiviopart/kivio_doc.cpp') diff --git a/kivio/kiviopart/kivio_doc.cpp b/kivio/kiviopart/kivio_doc.cpp index f30b256e..778ea2b9 100644 --- a/kivio/kiviopart/kivio_doc.cpp +++ b/kivio/kiviopart/kivio_doc.cpp @@ -927,17 +927,17 @@ KivioStencilSpawner* KivioDoc::findStencilSpawner( const TQString& setId, const KivioStencilSpawnerSet *pSpawnerSet = m_pLstSpawnerSets->first(); while( pSpawnerSet ) { - if( pSpawnerSet->id() == setId && pSpawnerSet->tqfind(stencilId) ) + if( pSpawnerSet->id() == setId && pSpawnerSet->find(stencilId) ) { - return pSpawnerSet->tqfind(stencilId); - // return pSpawnerSet->tqfind(name) + return pSpawnerSet->find(stencilId); + // return pSpawnerSet->find(name) } pSpawnerSet = m_pLstSpawnerSets->next(); } - if( m_pInternalSet->id() == setId && m_pInternalSet->tqfind(stencilId) ) + if( m_pInternalSet->id() == setId && m_pInternalSet->find(stencilId) ) { - return m_pInternalSet->tqfind(stencilId); + return m_pInternalSet->find(stencilId); } return NULL; @@ -945,7 +945,7 @@ KivioStencilSpawner* KivioDoc::findStencilSpawner( const TQString& setId, const KivioStencilSpawner* KivioDoc::findInternalStencilSpawner( const TQString& stencilId ) { - return m_pInternalSet->tqfind(stencilId); + return m_pInternalSet->find(stencilId); } void KivioDoc::addInternalStencilSpawner(KivioStencilSpawner* spawner) -- cgit v1.2.1