From 5198c9d3ac02aa9c7949f49e3cf374f683facb18 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 8 Apr 2025 12:59:07 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- buildtools/autotools/autodetailsview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildtools/autotools/autodetailsview.cpp') diff --git a/buildtools/autotools/autodetailsview.cpp b/buildtools/autotools/autodetailsview.cpp index 3c4ae477..c9c2ce75 100644 --- a/buildtools/autotools/autodetailsview.cpp +++ b/buildtools/autotools/autodetailsview.cpp @@ -587,7 +587,7 @@ void AutoDetailsView::slotDetailsContextMenu( TDEListView *, TQListViewItem *ite popup.setWhatsThis(idViewUIH, i18n("Open ui.h file

Opens .ui.h file " "associated with the selected .ui.")); - if (!fitem->name.contains(TQRegExp("ui$")) || fitem->is_subst == true) + if (!fitem->name.contains(TQRegExp("ui$")) || fitem->is_subst) { popup.removeItem(idUISubclasses); popup.removeItem(idViewUIH); @@ -597,7 +597,7 @@ void AutoDetailsView::slotDetailsContextMenu( TDEListView *, TQListViewItem *ite if (fitem->uiFileLink.isEmpty()) popup.removeItem(idUpdateWidgetclass); - if(fitem->is_subst == false) + if(!fitem->is_subst) m_part->core()->fillContextMenu( &popup, &context ); int r = popup.exec( p ); -- cgit v1.2.3