diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:45 +0900 |
| commit | 9f33cf5c835c5433e3368f0d1e62b4eb0ca3f259 (patch) | |
| tree | 79c16ae0b39f383fed551b6179fc10f342de07b9 /src/autostart.cpp | |
| parent | c2ab3d731d30f72ddbd228b4ad966b6e4cb1469e (diff) | |
| download | kcmautostart-9f33cf5c835c5433e3368f0d1e62b4eb0ca3f259.tar.gz kcmautostart-9f33cf5c835c5433e3368f0d1e62b4eb0ca3f259.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/autostart.cpp')
| -rw-r--r-- | src/autostart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); |
