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/variant.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/variant.cpp') diff --git a/src/variant.cpp b/src/variant.cpp index 940eb6e..bfeafa9 100644 --- a/src/variant.cpp +++ b/src/variant.cpp @@ -47,7 +47,7 @@ void Variant::setType( Type::Value type ) void Variant::appendAllowed(TQString string) { - if ( !m_allowed.tqcontains(string) ) { + if ( !m_allowed.contains(string) ) { m_allowed.append(string); } } @@ -61,7 +61,7 @@ void Variant::setAllowed(TQStringList stringList) const TQStringList::iterator end = stringList.end(); for ( TQStringList::iterator it = stringList.begin(); it != end; ++it ) { - if ( !m_allowed.tqcontains(*it) ) { + if ( !m_allowed.contains(*it) ) { m_allowed.append(*it); } } -- cgit v1.2.3