From 0813b39aed2cf4c84157a22c4c9594336d93d412 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/kdesdk@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kbabel/datatools/equations/main.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kbabel/datatools/equations') diff --git a/kbabel/datatools/equations/main.cc b/kbabel/datatools/equations/main.cc index 96cb3057..cb1e1f7b 100644 --- a/kbabel/datatools/equations/main.cc +++ b/kbabel/datatools/equations/main.cc @@ -86,12 +86,12 @@ bool EquationsTool::run( const TQString& command, void* data, const TQString& da bool hasError = false; - if(!item->isUntranslated() && !item->msgid().first().tqcontains('\n') - && item->msgid().first().tqcontains(_equation)) + if(!item->isUntranslated() && !item->msgid().first().contains('\n') + && item->msgid().first().contains(_equation)) { - int index = item->msgid().first().tqfind('='); + int index = item->msgid().first().find('='); TQString left = item->msgid().first().left(index); - index = item->msgstr().first().tqfind('='); + index = item->msgstr().first().find('='); if(left != item->msgstr().first().left(index)) hasError = true; } -- cgit v1.2.1