From a88d4d648a4ae2d7d7abd23916b49b41c1a867f3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 27 Apr 2025 16:55:48 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea) --- libtdepim/ldapsearchdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtdepim/ldapsearchdialog.cpp') diff --git a/libtdepim/ldapsearchdialog.cpp b/libtdepim/ldapsearchdialog.cpp index 26cc3d24..2adbc14d 100644 --- a/libtdepim/ldapsearchdialog.cpp +++ b/libtdepim/ldapsearchdialog.cpp @@ -62,7 +62,7 @@ static TQString join( const KPIM::LdapAttrValue& lst, const TQString& sep ) for ( KPIM::LdapAttrValue::ConstIterator it = lst.begin(); it != lst.end(); ++it ) { if ( alredy ) res += sep; - alredy = TRUE; + alredy = true; res += asUtf8( *it ); } return res; -- cgit v1.2.3