diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:40:11 +0900 |
| commit | 3233d6a066667673e676dee95db7ca1419087018 (patch) | |
| tree | ef8462b8cce8e3cd60aa3121011b8cbb05ad6542 /kbfxlib/data | |
| parent | 29aac93d751ef6b7aa721321df8b94679813916e (diff) | |
| download | kbfx-3233d6a066667673e676dee95db7ca1419087018.tar.gz kbfx-3233d6a066667673e676dee95db7ca1419087018.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbfxlib/data')
| -rw-r--r-- | kbfxlib/data/kbfxdatagroup.cpp | 2 | ||||
| -rw-r--r-- | kbfxlib/data/kbfxplasmapluginloader.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kbfxlib/data/kbfxdatagroup.cpp b/kbfxlib/data/kbfxdatagroup.cpp index 93a9c1c..a321f8e 100644 --- a/kbfxlib/data/kbfxdatagroup.cpp +++ b/kbfxlib/data/kbfxdatagroup.cpp @@ -47,7 +47,7 @@ KbfxDataGroup::lookup ( TQString str ) Data::Iterator it; for ( it = m_data.begin();it!=m_data.end();++it ) { - if ( ( *it )->lookup ( str ) == true ) + if ( ( *it )->lookup ( str ) ) { _matching.prepend ( * ( *it ) ); } diff --git a/kbfxlib/data/kbfxplasmapluginloader.cpp b/kbfxlib/data/kbfxplasmapluginloader.cpp index 2f2025d..5a3cc82 100644 --- a/kbfxlib/data/kbfxplasmapluginloader.cpp +++ b/kbfxlib/data/kbfxplasmapluginloader.cpp @@ -152,7 +152,7 @@ KbfxPlasmaPluginLoader::scanPlugins() for ( it = pluginMap().begin(); it != pluginMap().end();++it ) { - if ( it.data()->status() == false ) + if ( !it.data()->status() ) plugins.append ( it.data()->name() ); } return plugins; |
