From 9f33cf5c835c5433e3368f0d1e62b4eb0ca3f259 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 29 Mar 2025 11:28:45 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- src/autostart.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/autostart.cpp') diff --git a/src/autostart.cpp b/src/autostart.cpp index 9a0e837..7345a94 100644 --- a/src/autostart.cpp +++ b/src/autostart.cpp @@ -126,8 +126,8 @@ CAutostart::CAutostart(TQWidget *parent, const char *name, const TQStringList&) listCMD->addColumn( i18n( "Name" ) ); listCMD->addColumn( i18n( "Command" ) ); listCMD->addColumn( i18n( "Run on" ) ); - listCMD->setAllColumnsShowFocus( TRUE ); - listCMD->setShowSortIndicator( TRUE ); + listCMD->setAllColumnsShowFocus( true ); + listCMD->setShowSortIndicator( true ); AutostartConfigLayout->addMultiCellWidget( listCMD, 0, 4, 0, 0 ); TQSpacerItem * spacer1 = new TQSpacerItem( 71, 170, TQSizePolicy::Minimum, TQSizePolicy::Expanding ); -- cgit v1.2.3