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/recipeinputdialog.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/recipeinputdialog.cpp')
-rw-r--r-- | src/dialogs/recipeinputdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/recipeinputdialog.cpp b/src/dialogs/recipeinputdialog.cpp index 5f7a46a..4a5b2c4 100644 --- a/src/dialogs/recipeinputdialog.cpp +++ b/src/dialogs/recipeinputdialog.cpp @@ -74,7 +74,7 @@ void ClickableLed::mouseReleaseEvent( TQMouseEvent* ) ImageDropLabel::ImageDropLabel( TQWidget *parent, TQPixmap &_sourcePhoto ) : TQLabel( parent ), sourcePhoto( _sourcePhoto ) { - setAcceptDrops( TRUE ); + setAcceptDrops( true ); } void ImageDropLabel::dragEnterEvent( TQDragEnterEvent* event ) |