summaryrefslogtreecommitdiffstats
path: root/src/tools/tqsettings.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-28 18:13:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-28 19:51:58 +0900
commit0b8fe7da6fe7441e08ab69a1e21ad1bf2833c474 (patch)
treeca21b8626422f6ff75c02a6bb368f3fb3c0c68e1 /src/tools/tqsettings.cpp
parentbe6b00dc63593828b349bdeae33554ad8fecee0a (diff)
downloadtqt-0b8fe7da6fe7441e08ab69a1e21ad1bf2833c474.tar.gz
tqt-0b8fe7da6fe7441e08ab69a1e21ad1bf2833c474.zip
Remove Q_NO_BOOL_TYPE define.
We are using c++17 compilers, so bool is always available. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tools/tqsettings.cpp')
-rw-r--r--src/tools/tqsettings.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/tqsettings.cpp b/src/tools/tqsettings.cpp
index 2f846731d..76b3faa61 100644
--- a/src/tools/tqsettings.cpp
+++ b/src/tools/tqsettings.cpp
@@ -1324,7 +1324,6 @@ TQString TQSettings::readEntry(const TQString &key, const TQString &def, bool *o
}
-#if !defined(Q_NO_BOOL_TYPE)
/*!
Writes the boolean entry \a value into key \a key. The \a key is
created if it doesn't exist. Any previous value is overwritten by \a
@@ -1356,7 +1355,6 @@ bool TQSettings::writeEntry(const TQString &key, bool value)
TQString s(value ? "true" : "false");
return writeEntry(key, s);
}
-#endif
/*!