diff options
Diffstat (limited to 'tqtinterface/qt4/tools/mergetr/mergetr.cpp')
-rw-r--r-- | tqtinterface/qt4/tools/mergetr/mergetr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tqtinterface/qt4/tools/mergetr/mergetr.cpp b/tqtinterface/qt4/tools/mergetr/mergetr.cpp index c0a33b6..43ccd25 100644 --- a/tqtinterface/qt4/tools/mergetr/mergetr.cpp +++ b/tqtinterface/qt4/tools/mergetr/mergetr.cpp @@ -1,7 +1,7 @@ /********************************************************************** ** Copyright (C) 1998-2008 Trolltech ASA. All rights reserved. ** -** This is a utility program for merging tqfindtr msgfiles +** This is a utility program for merging findtr msgfiles ** ** This file may be used under the terms of the GNU General ** Public License versions 2.0 or 3.0 as published by the Free @@ -184,7 +184,7 @@ void writecomment( TQTextStream &str, const TQString &s ) int idx = 0; int len = s.length(); while ( idx < len ) { - int nl = s.tqfind( '\n', idx ); + int nl = s.find( '\n', idx ); if ( nl < 0 ) { qWarning( "writecomment: string lacks newline" ); str << "# " << s.mid( idx ) << '\n'; |