summaryrefslogtreecommitdiffstats
path: root/kbfxlib/common/kbfxthemesdata.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 19:00:50 +0900
commit4239ec917e4a66a6264b4ba732489ba88fad361a (patch)
tree40b37f39c8f1fd7ee5e19d5b3f1614f730ecea48 /kbfxlib/common/kbfxthemesdata.cpp
parent27a604dfeecd599c5fc910683eabecfca6957f82 (diff)
downloadkbfx-4239ec91.tar.gz
kbfx-4239ec91.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3233d6a066667673e676dee95db7ca1419087018)
Diffstat (limited to 'kbfxlib/common/kbfxthemesdata.cpp')
-rw-r--r--kbfxlib/common/kbfxthemesdata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbfxlib/common/kbfxthemesdata.cpp b/kbfxlib/common/kbfxthemesdata.cpp
index 5247e9d..174d8f9 100644
--- a/kbfxlib/common/kbfxthemesdata.cpp
+++ b/kbfxlib/common/kbfxthemesdata.cpp
@@ -65,12 +65,12 @@ ThemesMap KbfxThemesData::setThemeList ( TQString path )
f = new TQFileInfo ( d, fi->fileName() + "/" + m_KbfxThemesVersion );
if ( m_KbfxShowOldThemes )
{
- m_themesMap[fi->fileName() ] = ( fi->dirPath ( TRUE ) ).append ( "/" );
+ m_themesMap[fi->fileName() ] = ( fi->dirPath ( true ) ).append ( "/" );
}
else
{
if ( f->exists () )
- m_themesMap[fi->fileName() ] = ( fi->dirPath ( TRUE ) ).append ( "/" );
+ m_themesMap[fi->fileName() ] = ( fi->dirPath ( true ) ).append ( "/" );
}
}
++it;