summaryrefslogtreecommitdiffstats
path: root/src/dialogs/conversiondialog.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/conversiondialog.cpp
parent96267a56c09f17c01d909ec8a8b60f1749782755 (diff)
downloadkrecipes-e3823d26.tar.gz
krecipes-e3823d26.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/conversiondialog.cpp')
-rw-r--r--src/dialogs/conversiondialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/conversiondialog.cpp b/src/dialogs/conversiondialog.cpp
index c9e3f51..d535e3b 100644
--- a/src/dialogs/conversiondialog.cpp
+++ b/src/dialogs/conversiondialog.cpp
@@ -38,7 +38,7 @@ ConversionDialog::ConversionDialog( TQWidget* parent, RecipeDB *db, const char*
setHelp("measure-converter");
setButtonText( KDialogBase::User1, i18n("Convert") );
- setSizeGripEnabled( TRUE );
+ setSizeGripEnabled( true );
TQVBox *page = makeVBoxMainWidget();
@@ -56,7 +56,7 @@ ConversionDialog::ConversionDialog( TQWidget* parent, RecipeDB *db, const char*
TQHBox *fromBottomBox = new TQHBox(vbox);
- ingredientBox = new IngredientComboBox( FALSE, fromBottomBox, db, i18n( "--Ingredient (optional)--" ) );
+ ingredientBox = new IngredientComboBox( false, fromBottomBox, db, i18n( "--Ingredient (optional)--" ) );
ingredientBox->reload();
prepMethodBox = new PrepMethodComboBox( false, fromBottomBox, db, i18n( "-No Preparation-" ) );