summaryrefslogtreecommitdiffstats
path: root/src/dialogs/dbimportdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-23 11:11:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-25 12:57:45 +0900
commite3823d26a868a9ebb395f4b6e6ff874acae4b595 (patch)
treeb933885a86ba51ab080fc282537c22db7d9d59ee /src/dialogs/dbimportdialog.cpp
parent96267a56c09f17c01d909ec8a8b60f1749782755 (diff)
downloadkrecipes-r14.1.4.tar.gz
krecipes-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d881a9b6b5bcd95524d5e2bd8aea25d89f53f404)
Diffstat (limited to 'src/dialogs/dbimportdialog.cpp')
-rw-r--r--src/dialogs/dbimportdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/dbimportdialog.cpp b/src/dialogs/dbimportdialog.cpp
index db8e276..3e65955 100644
--- a/src/dialogs/dbimportdialog.cpp
+++ b/src/dialogs/dbimportdialog.cpp
@@ -52,7 +52,7 @@ DBImportDialog::DBImportDialog( TQWidget *parent, const char *name )
dbButtonGroupLayout->setAlignment( TQt::AlignTop );
liteRadioButton = new TQRadioButton( dbButtonGroup, "liteRadioButton" );
- liteRadioButton->setChecked( TRUE );
+ liteRadioButton->setChecked( true );
dbButtonGroupLayout->addWidget( liteRadioButton );
mysqlRadioButton = new TQRadioButton( dbButtonGroup, "mysqlRadioButton" );