summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:28:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 19:01:04 +0900
commit5f73b61861868df2f1499d67eda07265c4e5fb03 (patch)
treea1e71cb2eaddef1dcfc3ffa0b534cdccb961696e
parent559c7b268a0ac88dfb1d4b86bff2f168b280ea82 (diff)
downloadkcmautostart-5f73b61861868df2f1499d67eda07265c4e5fb03.tar.gz
kcmautostart-5f73b61861868df2f1499d67eda07265c4e5fb03.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9f33cf5c835c5433e3368f0d1e62b4eb0ca3f259)
-rw-r--r--src/autostart.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/autostart.cpp b/src/autostart.cpp
index 05b28e5..4f4e19b 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 );