diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
commit | dd46b9bdeae872ed7682913c898931f1aa6d3d42 (patch) | |
tree | 83a29165f950f0f51ef67b342d5a79a0417643c9 /kmix/kmixapplet.cpp | |
parent | cc7a56e1bd1694b2d37ecd46691037f02381d6d3 (diff) | |
download | tdemultimedia-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 'kmix/kmixapplet.cpp')
-rw-r--r-- | kmix/kmixapplet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmix/kmixapplet.cpp b/kmix/kmixapplet.cpp index 05c92736..b65458c8 100644 --- a/kmix/kmixapplet.cpp +++ b/kmix/kmixapplet.cpp @@ -165,7 +165,7 @@ KMixApplet::KMixApplet( const TQString& configFile, Type t, // init static vars if ( s_instCount == 0) { - Mixer::mixers().setAutoDelete( TRUE ); + Mixer::mixers().setAutoDelete( true ); TQString dummyStringHwinfo; MixerToolBox::initMixer(Mixer::mixers(), false, dummyStringHwinfo); } @@ -321,10 +321,10 @@ void KMixApplet::selectMixer() n++; } - bool ok = FALSE; + bool ok = false; TQString res = KInputDialog::getItem( i18n("Mixers"), i18n("Available mixers:"), - lst, 0, FALSE, &ok, this ); + lst, 0, false, &ok, this ); if ( ok ) { Mixer *mixer = Mixer::mixers().at( lst.findIndex( res ) ); |