diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:42:30 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:46:05 +0900 |
| commit | 33077784d49f4d95c4fefeb8326764a1c0e1eb9a (patch) | |
| tree | 7e8b21be0a10b8c97077f9aa7a7cbc917d04c555 /src/ftpsession.cpp | |
| parent | 7c1e2b00eac153333c7c2e4d935ba9f4c3770bec (diff) | |
| download | kasablanca-33077784d49f4d95c4fefeb8326764a1c0e1eb9a.tar.gz kasablanca-33077784d49f4d95c4fefeb8326764a1c0e1eb9a.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/ftpsession.cpp')
| -rw-r--r-- | src/ftpsession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftpsession.cpp b/src/ftpsession.cpp index ae80ba4..9648395 100644 --- a/src/ftpsession.cpp +++ b/src/ftpsession.cpp @@ -381,7 +381,7 @@ void FtpSession::SLOT_CmdLine() p->setWorkingDirectory(m_localworkingdir.absPath()); *p << TQStringList::split(" ", mp_cmdline->text()); connect(p, TQ_SIGNAL(processExited(TDEProcess*)), TQ_SLOT(SLOT_LocalProcessExited(TDEProcess*))); - if (p->start() == TRUE) mp_cmdline->setText(""); + if (p->start()) mp_cmdline->setText(""); } } |
