summaryrefslogtreecommitdiffstats
path: root/knights/io_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/io_engine.cpp')
-rw-r--r--knights/io_engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knights/io_engine.cpp b/knights/io_engine.cpp
index 5f44b1e..ee44a96 100644
--- a/knights/io_engine.cpp
+++ b/knights/io_engine.cpp
@@ -231,9 +231,9 @@ void io_engine::Recv( KProcess*, char *buffer, int bufLen )
FIFO_In += newBuff;
delete newBuff;
- if( FIFO_In.tqcontains( TQChar('\n') ) )
+ if( FIFO_In.contains( TQChar('\n') ) )
{
- TQString proc = FIFO_In.left( FIFO_In.tqfindRev( TQChar('\n') ) );
+ TQString proc = FIFO_In.left( FIFO_In.findRev( TQChar('\n') ) );
FIFO_In = FIFO_In.right( FIFO_In.length() - proc.length() );
/* Split and Parse Full Lines of Input */