From e05894553004a47b1e2f276bedcf5963b57a3932 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/ktechlab@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/flowcodedocument.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/flowcodedocument.cpp') diff --git a/src/flowcodedocument.cpp b/src/flowcodedocument.cpp index e8d7512..efe0a94 100644 --- a/src/flowcodedocument.cpp +++ b/src/flowcodedocument.cpp @@ -271,7 +271,7 @@ void FlowCodeDocument::varNameChanged( const TQString &newValue, const TQString // Decrease the old variable count // If none are left after, remove it from microsettings - StringIntMap::iterator it = m_varNames.tqfind(oldValue); + StringIntMap::iterator it = m_varNames.find(oldValue); if ( it != m_varNames.end() ) { --(it.data()); @@ -286,7 +286,7 @@ void FlowCodeDocument::varNameChanged( const TQString &newValue, const TQString // Add the new variable to a count, tell microsettings about it if it is new if ( !newValue.isEmpty() ) { - it = m_varNames.tqfind(newValue); + it = m_varNames.find(newValue); if ( it != m_varNames.end() ) { ++it.data(); } else { -- cgit v1.2.3