summaryrefslogtreecommitdiffstats
path: root/src/dialogs/resizerecipedialog.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/resizerecipedialog.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/resizerecipedialog.cpp')
-rw-r--r--src/dialogs/resizerecipedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/resizerecipedialog.cpp b/src/dialogs/resizerecipedialog.cpp
index 958fadb..461af89 100644
--- a/src/dialogs/resizerecipedialog.cpp
+++ b/src/dialogs/resizerecipedialog.cpp
@@ -73,7 +73,7 @@ ResizeRecipeDialog::ResizeRecipeDialog( TQWidget *parent, Recipe *recipe )
yieldFrameLayout->addMultiCellWidget( newYieldLabel, 1, 1, 0, 1 );
currentYieldInput = new KLineEdit( yieldFrame );
- currentYieldInput->setReadOnly( TRUE );
+ currentYieldInput->setReadOnly( true );
currentYieldInput->setAlignment( TQt::AlignRight );
yieldFrameLayout->addMultiCellWidget( currentYieldInput, 0, 0, 1, 2 );