summaryrefslogtreecommitdiffstats
path: root/src/tools/tqlocale.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix a -Wlogical-not-parentheses warningAlexander Golubev2026-03-111-1/+1
| | | | | | | | | | | | | | | The function returns the number of lowest zero bits of a 32-bit value and shifts the value by that number. By the time it reaches last condition x can be zero if and only if the passed value was zero and hence we can immediately return 32. Initially the condition were likely supposed to be `if (!(x & 1))` but in this particular case it's the same as `!x` and subjectively it makes more sense to just check if the number is zero. See discussion in the #264. See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/pulls/264 Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Replace TRUE/FALSE with boolean values true/false - part 9Michele Calgaro2025-12-221-50/+50
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Remove support for Tru64, OSF and SCO v3.2Michele Calgaro2025-01-071-5/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop Borland compiler specific codeMichele Calgaro2024-10-281-4/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)Michele Calgaro2024-09-041-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Rename text class nt* related files to equivalent tq*Michele Calgaro2024-07-241-0/+6322
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>