From 4239ec917e4a66a6264b4ba732489ba88fad361a Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 29 Mar 2025 11:28:35 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit 3233d6a066667673e676dee95db7ca1419087018) --- plugins/applications/kbfxplasmadataplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/applications/kbfxplasmadataplugin.cpp') diff --git a/plugins/applications/kbfxplasmadataplugin.cpp b/plugins/applications/kbfxplasmadataplugin.cpp index 14b0011..dca0b2d 100644 --- a/plugins/applications/kbfxplasmadataplugin.cpp +++ b/plugins/applications/kbfxplasmadataplugin.cpp @@ -44,7 +44,7 @@ browseApp ( KServiceGroup::Ptr service, KbfxDataGroupList * glist, KServiceGroup::List list = service->entries ( true, true, false, true ); - if ( service->noDisplay () == true ) + if ( service->noDisplay () ) return; /* @@ -198,7 +198,7 @@ search ( TQString _keyword ) { if ( s == NULL ) continue; - if ( (*s)->noDisplay () == true ) + if ( (*s)->noDisplay () ) continue; TQString *sPtr = new TQString (); -- cgit v1.2.3