diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-26 21:02:27 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 09:15:13 +0900 |
| commit | 2dd4d59787dcca2aa6682c89b8a02ea392175c39 (patch) | |
| tree | f571627574d8b679de5eddff8ac8d34775faf719 /src/gui/widgets/ColourTable.cpp | |
| parent | 7393502aef6120e9a24805fb2215563cd49b96be (diff) | |
| download | rosegarden-2dd4d59787dcca2aa6682c89b8a02ea392175c39.tar.gz rosegarden-2dd4d59787dcca2aa6682c89b8a02ea392175c39.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/widgets/ColourTable.cpp')
| -rw-r--r-- | src/gui/widgets/ColourTable.cpp | 2 |
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")); |
