summaryrefslogtreecommitdiffstats
path: root/superkaramba
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-05 23:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-05 23:43:43 +0900
commit7b4cebbb59365794180f9c699056fd14658584c0 (patch)
treefc688f7669e7546903817a9016f9f4a4fbee6556 /superkaramba
parent9872a603705e08c7cb9deda61b1890fbd13da62b (diff)
downloadtdeutils-r14.1.x.tar.gz
tdeutils-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/falser14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit bdb0aa04da758449d8b82e90f00cae94593146da)
Diffstat (limited to 'superkaramba')
-rw-r--r--superkaramba/src/themefile.cpp4
-rw-r--r--superkaramba/src/themesdlg.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/superkaramba/src/themefile.cpp b/superkaramba/src/themefile.cpp
index 84e1590..dc8511a 100644
--- a/superkaramba/src/themefile.cpp
+++ b/superkaramba/src/themefile.cpp
@@ -251,7 +251,7 @@ bool ThemeFile::set(const KURL &url)
TQFileInfo fi(m_file);
- m_name = fi.baseName( TRUE );
+ m_name = fi.baseName( true );
m_theme = m_name + ".theme";
m_python = m_name;
m_id = m_name;
@@ -275,7 +275,7 @@ bool ThemeFile::set(const KURL &url)
fimo.setFile(m_theme);
else
fimo.setFile(m_python);
- m_mo = fimo.baseName( TRUE );
+ m_mo = fimo.baseName( true );
m_locale = new ThemeLocale(this);
return isValid();
diff --git a/superkaramba/src/themesdlg.cpp b/superkaramba/src/themesdlg.cpp
index 4d79048..bd17d34 100644
--- a/superkaramba/src/themesdlg.cpp
+++ b/superkaramba/src/themesdlg.cpp
@@ -289,7 +289,7 @@ void ThemesDlg::addThemeToDialog(const KArchiveDirectory *archiveDir,
else
{
TQFileInfo fi(*it);
- if(fi.extension( FALSE ) == "theme")
+ if(fi.extension( false ) == "theme")
{
addThemeToList(destDir + *it);
writeNewStuffConfig(destDir);