diff options
Diffstat (limited to 'kioslave/sftp/process.cpp')
-rw-r--r-- | kioslave/sftp/process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/sftp/process.cpp b/kioslave/sftp/process.cpp index ca99b36bb..b97d5860b 100644 --- a/kioslave/sftp/process.cpp +++ b/kioslave/sftp/process.cpp @@ -107,7 +107,7 @@ TQCString MyPtyProcess::readLineFrom(int fd, TQCString& inbuf, bool block) if (!inbuf.isEmpty()) { - pos = inbuf.find('\n'); + pos = inbuf.tqfind('\n'); if (pos == -1) { @@ -155,7 +155,7 @@ TQCString MyPtyProcess::readLineFrom(int fd, TQCString& inbuf, bool block) buf[nbytes] = '\000'; inbuf += buf; - pos = inbuf.find('\n'); + pos = inbuf.tqfind('\n'); if (pos == -1) { ret = inbuf; @@ -260,7 +260,7 @@ int MyPtyProcess::exec(TQCString command, QCStringList args) // From now on, terminal output goes through the tty. TQCString path; - if (command.contains('/')) + if (command.tqcontains('/')) path = command; else { |