diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-03 15:55:36 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-08 17:03:36 +0900 |
| commit | 89969dcb2142d91b295c8d18cde46e22ef118dce (patch) | |
| tree | 862942119b09c5ad5aeaea8baa6b9e698928ce2e /kopete/protocols/irc/ui | |
| parent | 40e3e626e4cc8bb2d65788e3c097ddae4192c4d8 (diff) | |
| download | tdenetwork-89969dcb2142d91b295c8d18cde46e22ef118dce.tar.gz tdenetwork-89969dcb2142d91b295c8d18cde46e22ef118dce.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kopete/protocols/irc/ui')
| -rw-r--r-- | kopete/protocols/irc/ui/channellist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/protocols/irc/ui/channellist.cpp b/kopete/protocols/irc/ui/channellist.cpp index fdff5512..de64319f 100644 --- a/kopete/protocols/irc/ui/channellist.cpp +++ b/kopete/protocols/irc/ui/channellist.cpp @@ -189,10 +189,10 @@ ChannelList::ChannelList( TQWidget* parent, KIRC::Engine *engine ) mChannelList = new TDEListView( this, "mChannelList" ); mChannelList->addColumn( i18n( "Channel" ) ); mChannelList->addColumn( i18n( "Users" ) ); - mChannelList->header()->setResizeEnabled( FALSE, mChannelList->header()->count() - 1 ); + mChannelList->header()->setResizeEnabled( false, mChannelList->header()->count() - 1 ); mChannelList->addColumn( i18n( "Topic" ) ); - mChannelList->setAllColumnsShowFocus( TRUE ); - mChannelList->setShowSortIndicator( TRUE ); + mChannelList->setAllColumnsShowFocus( true ); + mChannelList->setShowSortIndicator( true ); ChannelListLayout->addWidget( mChannelList ); clearWState( WState_Polished ); |
