From 7f36db4704fe1e47683ecc8e07654b4762edd725 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 25 May 2025 18:08:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit 0a439ac80bdf6ffb9cac104ad3098a321ee0403c) --- kcontrol/info/info_linux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kcontrol/info/info_linux.cpp') diff --git a/kcontrol/info/info_linux.cpp b/kcontrol/info/info_linux.cpp index bbda9691d..6354aa46d 100644 --- a/kcontrol/info/info_linux.cpp +++ b/kcontrol/info/info_linux.cpp @@ -293,7 +293,7 @@ static void cleanPassword(TQString & str) while (index >= 0) { - index = str.find(passwd, index, FALSE); + index = str.find(passwd, index, false); if (index >= 0) { index += passwd.length(); while (index < (int) str.length() && -- cgit v1.2.3