diff options
Diffstat (limited to 'vcs/cvsservice/bufferedstringreader.cpp')
-rw-r--r-- | vcs/cvsservice/bufferedstringreader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcs/cvsservice/bufferedstringreader.cpp b/vcs/cvsservice/bufferedstringreader.cpp index 5c2151fc..bdaa26f3 100644 --- a/vcs/cvsservice/bufferedstringreader.cpp +++ b/vcs/cvsservice/bufferedstringreader.cpp @@ -27,16 +27,16 @@ BufferedStringReader::~BufferedStringReader() /////////////////////////////////////////////////////////////////////////////// -QStringList BufferedStringReader::process( const QString &otherChars ) +TQStringList BufferedStringReader::process( const TQString &otherChars ) { // Add to previous buffered chars m_stringBuffer += otherChars; - QStringList strings; + TQStringList strings; // Now find all the basic strings in the buffer int pos; while ( (pos = m_stringBuffer.find('\n')) != -1) { - QString line = m_stringBuffer.left( pos ); + TQString line = m_stringBuffer.left( pos ); if (!line.isEmpty()) { strings.append( line ); |