diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-23 11:11:07 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-25 12:57:45 +0900 |
commit | e3823d26a868a9ebb395f4b6e6ff874acae4b595 (patch) | |
tree | b933885a86ba51ab080fc282537c22db7d9d59ee /src/dialogs/resizerecipedialog.cpp | |
parent | 96267a56c09f17c01d909ec8a8b60f1749782755 (diff) | |
download | krecipes-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.cpp | 2 |
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 ); |