diff options
Diffstat (limited to 'vcs/cvsservice/bufferedstringreader.cpp')
-rw-r--r-- | vcs/cvsservice/bufferedstringreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcs/cvsservice/bufferedstringreader.cpp b/vcs/cvsservice/bufferedstringreader.cpp index f9d1ecb2..bdaa26f3 100644 --- a/vcs/cvsservice/bufferedstringreader.cpp +++ b/vcs/cvsservice/bufferedstringreader.cpp @@ -34,7 +34,7 @@ TQStringList BufferedStringReader::process( const TQString &otherChars ) TQStringList strings; // Now find all the basic strings in the buffer int pos; - while ( (pos = m_stringBuffer.tqfind('\n')) != -1) + while ( (pos = m_stringBuffer.find('\n')) != -1) { TQString line = m_stringBuffer.left( pos ); if (!line.isEmpty()) |