summaryrefslogtreecommitdiffstats
path: root/tdemid/channelcfgdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-17 22:24:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-17 22:24:01 +0900
commitdd46b9bdeae872ed7682913c898931f1aa6d3d42 (patch)
tree83a29165f950f0f51ef67b342d5a79a0417643c9 /tdemid/channelcfgdlg.cpp
parentcc7a56e1bd1694b2d37ecd46691037f02381d6d3 (diff)
downloadtdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.tar.gz
tdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdemid/channelcfgdlg.cpp')
-rw-r--r--tdemid/channelcfgdlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdemid/channelcfgdlg.cpp b/tdemid/channelcfgdlg.cpp
index 76f6b87a..533a5573 100644
--- a/tdemid/channelcfgdlg.cpp
+++ b/tdemid/channelcfgdlg.cpp
@@ -12,7 +12,7 @@
#include <tqlayout.h>
#include <tqvbuttongroup.h>
-ChannelViewConfigDialog::ChannelViewConfigDialog(TQWidget *parent,const char *name) : KDialogBase(parent,name,TRUE,i18n("Configure Channel View"),Ok|Cancel, Ok)
+ChannelViewConfigDialog::ChannelViewConfigDialog(TQWidget *parent,const char *name) : KDialogBase(parent,name,true,i18n("Configure Channel View"),Ok|Cancel, Ok)
{
TQWidget *page = new TQWidget( this );
setMainWidget(page);
@@ -22,10 +22,10 @@ ChannelViewConfigDialog::ChannelViewConfigDialog(TQWidget *parent,const char *na
rb0=new TQRadioButton(i18n("3D look"),qbg,"3d");
rb1=new TQRadioButton(i18n("3D - filled"),qbg,"4d");
- qbg->setExclusive(TRUE);
+ qbg->setExclusive(true);
topLayout->addWidget( qbg );
- ((ChannelView::lookMode()==0)?rb0:rb1)->setChecked(TRUE);
+ ((ChannelView::lookMode()==0)?rb0:rb1)->setChecked(true);
connect (qbg, TQ_SIGNAL(pressed(int)),this,TQ_SLOT(modeselected(int)));
}