summaryrefslogtreecommitdiffstats
path: root/src/kbfxplasmacanvasstack.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:28:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:40:11 +0900
commit3233d6a066667673e676dee95db7ca1419087018 (patch)
treeef8462b8cce8e3cd60aa3121011b8cbb05ad6542 /src/kbfxplasmacanvasstack.cpp
parent29aac93d751ef6b7aa721321df8b94679813916e (diff)
downloadkbfx-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 'src/kbfxplasmacanvasstack.cpp')
-rw-r--r--src/kbfxplasmacanvasstack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kbfxplasmacanvasstack.cpp b/src/kbfxplasmacanvasstack.cpp
index 839867d..8278939 100644
--- a/src/kbfxplasmacanvasstack.cpp
+++ b/src/kbfxplasmacanvasstack.cpp
@@ -28,7 +28,7 @@ KbfxPlasmaCanvasStack::KbfxPlasmaCanvasStack()
m_count = 0;
m_height = 0;
m_width = 0;
- m_groupChain.setAutoDelete ( TRUE );
+ m_groupChain.setAutoDelete ( true );
m_name = "Unset:Faulty plugin";
}
@@ -84,7 +84,7 @@ bool
KbfxPlasmaCanvasStack::contains ( TQString name )
{
//FIXME:Depricated Data Structure Needs fixing
- if ( m_dict.contains ( name ) == true )
+ if ( m_dict.contains ( name ) )
return true;
else
return false;