summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-26 21:02:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 09:17:43 +0900
commitc811c531ffe77ce9f94db1031a79aa1bea76d94e (patch)
treef45387e87a60a49f3667ad704cf154f25280a23a /src/gui/widgets
parent9be11f74a7ca312c6b2c6ec04bb662b9ebabafc1 (diff)
downloadrosegarden-c811c531.tar.gz
rosegarden-c811c531.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2dd4d59787dcca2aa6682c89b8a02ea392175c39)
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/ColourTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/ColourTable.cpp b/src/gui/widgets/ColourTable.cpp
index 4845b9c..bf8f942 100644
--- a/src/gui/widgets/ColourTable.cpp
+++ b/src/gui/widgets/ColourTable.cpp
@@ -44,7 +44,7 @@ ColourTable::ColourTable
(TQWidget *parent, ColourMap &input, ColourList &list)
: TQTable(1, 2, parent, "RColourTable")
{
- setSorting(FALSE);
+ setSorting(false);
setSelectionMode(TQTable::SingleRow);
horizontalHeader()->setLabel(0, i18n("Name"));
horizontalHeader()->setLabel(1, i18n("Color"));