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/mixer_hpux.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/mixer_hpux.cpp')
-rw-r--r-- | kmix/mixer_hpux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmix/mixer_hpux.cpp b/kmix/mixer_hpux.cpp index 20ef91f3..0f491ac9 100644 --- a/kmix/mixer_hpux.cpp +++ b/kmix/mixer_hpux.cpp @@ -145,12 +145,12 @@ void Mixer_HPUX::setDevNumName_I(int devnum) */ bool Mixer_HPUX::setRecsrcHW( int devnum, bool on ) { - return FALSE; + return false; } bool Mixer_HPUX::isRecsrcHW( int devnum ) { - return FALSE; + return false; } int Mixer_HPUX::readVolumeFromHW( int devnum, Volume &vol ) |