summaryrefslogtreecommitdiffstats
path: root/tdecore/tdeaccelmanager.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-13 09:38:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-15 20:09:38 +0900
commitca275a6386d2ea3b95129ce78695865a3523153b (patch)
tree928f442cdcd715bb0ece379b605cfb4a7ef1c035 /tdecore/tdeaccelmanager.cpp
parent3afb7eb4e984562dff3addf2c6399c19262497f0 (diff)
downloadtdelibs-ca275a63.tar.gz
tdelibs-ca275a63.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ad58630b34fc61754c763cf951004ef27e38d33d)
Diffstat (limited to 'tdecore/tdeaccelmanager.cpp')
-rw-r--r--tdecore/tdeaccelmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/tdeaccelmanager.cpp b/tdecore/tdeaccelmanager.cpp
index ea0b034fd..3cc7eb22e 100644
--- a/tdecore/tdeaccelmanager.cpp
+++ b/tdecore/tdeaccelmanager.cpp
@@ -626,7 +626,7 @@ int TDEAccelString::maxWeight(int &index, const TQString &used)
index = -1;
for (uint pos=0; pos<m_pureText.length(); ++pos)
- if (used.find(m_pureText[pos], 0, FALSE) == -1 && m_pureText[pos].latin1() != 0)
+ if (used.find(m_pureText[pos], 0, false) == -1 && m_pureText[pos].latin1() != 0)
if (m_weight[pos] > max)
{
max = m_weight[pos];