summaryrefslogtreecommitdiffstats
path: root/src/sql/tqeditorfactory.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-06 17:33:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-07 11:57:25 +0900
commit5a863a8932d14b99c5f838c4efa1618070d71b29 (patch)
tree000bd50b5c488635f9663b16b7fbfe5380435a04 /src/sql/tqeditorfactory.cpp
parent771af909e74927126fba90ec6e0298dc68d5bf4f (diff)
downloadtqt-5a863a8932d14b99c5f838c4efa1618070d71b29.tar.gz
tqt-5a863a8932d14b99c5f838c4efa1618070d71b29.zip
Replace TRUE/FALSE with boolean values true/false - part 7HEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/sql/tqeditorfactory.cpp')
-rw-r--r--src/sql/tqeditorfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/tqeditorfactory.cpp b/src/sql/tqeditorfactory.cpp
index 098d850c7..6c1cf4a60 100644
--- a/src/sql/tqeditorfactory.cpp
+++ b/src/sql/tqeditorfactory.cpp
@@ -150,7 +150,7 @@ TQWidget * TQEditorFactory::createEditor( TQWidget * parent, const TQVariant & v
case TQVariant::CString:
case TQVariant::Double:
w = new TQLineEdit( parent, "qt_editor_double" );
- ((TQLineEdit*)w)->setFrame( FALSE );
+ ((TQLineEdit*)w)->setFrame( false );
break;
case TQVariant::Date:
w = new TQDateEdit( parent, "qt_editor_date" );