summaryrefslogtreecommitdiffstats
path: root/kmix/dialogselectmaster.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-28 21:07:20 +0900
commit8c5bf7fe3ada23d527631368ab77f5fa3844e359 (patch)
tree37252fd078ecdf32e46c526a0a6fee046979a14e /kmix/dialogselectmaster.cpp
parent6ccc327f6f1f7f26a62f6c3099179d2e3aaddc7a (diff)
downloadtdemultimedia-8c5bf7fe.tar.gz
tdemultimedia-8c5bf7fe.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit dd46b9bdeae872ed7682913c898931f1aa6d3d42)
Diffstat (limited to 'kmix/dialogselectmaster.cpp')
-rw-r--r--kmix/dialogselectmaster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmix/dialogselectmaster.cpp b/kmix/dialogselectmaster.cpp
index abeca6e4..b317d27e 100644
--- a/kmix/dialogselectmaster.cpp
+++ b/kmix/dialogselectmaster.cpp
@@ -79,7 +79,7 @@ void DialogSelectMaster::createWidgets(Mixer *ptr_mixer)
TQLabel *qlbl = new TQLabel( i18n("Current Mixer"), hboxMixerName );
qlbl->setFixedHeight(qlbl->sizeHint().height());
- m_cMixer = new KComboBox( FALSE, hboxMixerName, "mixerCombo" );
+ m_cMixer = new KComboBox( false, hboxMixerName, "mixerCombo" );
m_cMixer->setFixedHeight(m_cMixer->sizeHint().height());
TQToolTip::add(m_cMixer, i18n("Current mixer"));
connect(m_cMixer, TQ_SIGNAL(activated(int)), this, TQ_SLOT(createPageByID(int)));