From 5173e6fcb16310e130fba4143e334563b4f8460e 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/kdiff3@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 218740e..2556c0e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -75,7 +75,7 @@ void initialiseCmdLineArgs(std::vector& vOptions, TQStringList& TQString line = ts.readLine(); if ( line.startsWith("IgnorableCmdLineOptions=") ) { - int pos = line.tqfind('='); + int pos = line.find('='); if (pos>=0) { TQString s = line.mid(pos+1); @@ -201,7 +201,7 @@ int main(int argc, char *argv[]) TQString locale; locale = app.config()->readEntry("Language", "Auto"); - int spacePos = locale.tqfind(' '); + int spacePos = locale.find(' '); if (spacePos>0) locale = locale.left(spacePos); TQTranslator kdiff3Translator( 0 ); TQTranslator qtTranslator( 0 ); -- cgit v1.2.3