diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:40:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-03 10:27:13 +0900 |
commit | c281cf569124a6f2ab1aa60ea0486f7af6c89fe3 (patch) | |
tree | c51dccfa0996ddf41e33207708fdc9b07c8655ab /src/knutnet.cpp | |
parent | 8ba7dc041400b5677437621978b3c19f19780978 (diff) | |
download | knutclient-r14.1.4.tar.gz knutclient-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 402beef97615e8fd3bb9ccbae7a5229877df4129)
Diffstat (limited to 'src/knutnet.cpp')
-rw-r--r-- | src/knutnet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knutnet.cpp b/src/knutnet.cpp index e857dd4..6db0688 100644 --- a/src/knutnet.cpp +++ b/src/knutnet.cpp @@ -1841,7 +1841,7 @@ void KNutNet::slotConnectionError(int error) { if (m_numberConnection < m_countRepeat) { m_numberConnection++; // tqDebug ("--KNutNet:: connect error - try connect on next time"); - m_unConnectTimer->start( m_delay, TRUE ); + m_unConnectTimer->start( m_delay, true ); } else { // i don't connect server @@ -1855,7 +1855,7 @@ void KNutNet::slotConnectionError(int error) { // connecting is down, try repeated connection // tqDebug ("--KNutNet::no first connect connection error "); - m_unConnectTimer->start( m_delay, TRUE ); + m_unConnectTimer->start( m_delay, true ); } return; } |