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/smalldialogs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/smalldialogs.cpp') diff --git a/src/smalldialogs.cpp b/src/smalldialogs.cpp index b4436ae..7dc6340 100644 --- a/src/smalldialogs.cpp +++ b/src/smalldialogs.cpp @@ -256,10 +256,10 @@ static void fixCurrentText( TQComboBox* pCB ) { TQString s = pCB->currentText(); - int pos = s.tqfind( '\n' ); + int pos = s.find( '\n' ); if ( pos>=0 ) s=s.left(pos); - pos = s.tqfind( '\r' ); + pos = s.find( '\r' ); if ( pos>=0 ) s=s.left(pos); -- cgit v1.2.3