summaryrefslogtreecommitdiffstats
path: root/src/libs/themeengine/themeengine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-21 13:07:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-21 13:07:27 +0900
commit015b36e07410f5f8a7eefecc24d57717cb90e01d (patch)
tree3dcd952f85a2b5d306a8359499745ecee32a7c0d /src/libs/themeengine/themeengine.cpp
parentbeceb3431363d75b07e36d0b0aaa94dcb0519c86 (diff)
downloaddigikam-015b36e07410f5f8a7eefecc24d57717cb90e01d.tar.gz
digikam-015b36e07410f5f8a7eefecc24d57717cb90e01d.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/libs/themeengine/themeengine.cpp')
-rw-r--r--src/libs/themeengine/themeengine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/themeengine/themeengine.cpp b/src/libs/themeengine/themeengine.cpp
index 3f5ff65c..8d874067 100644
--- a/src/libs/themeengine/themeengine.cpp
+++ b/src/libs/themeengine/themeengine.cpp
@@ -836,7 +836,7 @@ bool ThemeEngine::saveTheme()
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("BannerBorder"));
- e.setAttribute(TQString::fromLatin1("value"), (t->bannerBorder ? "TRUE" : "FALSE"));
+ e.setAttribute(TQString::fromLatin1("value"), (t->bannerBorder ? "true" : "false"));
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("BannerBorderColor"));
@@ -905,7 +905,7 @@ bool ThemeEngine::saveTheme()
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ThumbnailRegularBorder"));
- e.setAttribute(TQString::fromLatin1("value"), (t->thumbRegBorder ? "TRUE" : "FALSE"));
+ e.setAttribute(TQString::fromLatin1("value"), (t->thumbRegBorder ? "true" : "false"));
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ThumbnailRegularBorderColor"));
@@ -974,7 +974,7 @@ bool ThemeEngine::saveTheme()
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ThumbnailSelectedBorder"));
- e.setAttribute(TQString::fromLatin1("value"), (t->thumbSelBorder ? "TRUE" : "FALSE"));
+ e.setAttribute(TQString::fromLatin1("value"), (t->thumbSelBorder ? "true" : "false"));
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ThumbnailSelectedBorderColor"));
@@ -1043,7 +1043,7 @@ bool ThemeEngine::saveTheme()
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ListviewRegularBorder"));
- e.setAttribute(TQString::fromLatin1("value"), (t->listRegBorder ? "TRUE" : "FALSE"));
+ e.setAttribute(TQString::fromLatin1("value"), (t->listRegBorder ? "true" : "false"));
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ListviewRegularBorderColor"));
@@ -1112,7 +1112,7 @@ bool ThemeEngine::saveTheme()
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ListviewSelectedBorder"));
- e.setAttribute(TQString::fromLatin1("value"), (t->listSelBorder ? "TRUE" : "FALSE"));
+ e.setAttribute(TQString::fromLatin1("value"), (t->listSelBorder ? "true" : "false"));
themeElem.appendChild(e);
e = xmlDoc.createElement(TQString::fromLatin1("ListviewSelectedBorderColor"));