diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:40:49 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-31 15:45:48 +0900 |
| commit | 402beef97615e8fd3bb9ccbae7a5229877df4129 (patch) | |
| tree | 2331bfb24ec2d3565c711f6475298cedc5113699 /src/knutnet.cpp | |
| parent | 4201147e692d2a6b1bfccefbbc628d37389ab68c (diff) | |
| download | knutclient-402beef97615e8fd3bb9ccbae7a5229877df4129.tar.gz knutclient-402beef97615e8fd3bb9ccbae7a5229877df4129.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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; } |
