diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-08 15:17:51 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-14 17:51:59 +0900 |
| commit | 3a477fb70884668d163f6631a73c8ab894928bcc (patch) | |
| tree | 0ac0327df978cf22b7a1f495f0649591bb39ed2a /src/kernel/qdropsite.cpp | |
| parent | e4085a83c143eb366d0364596297b322476cc652 (diff) | |
| download | tqt-r14.1.x.tar.gz tqt-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false - part 8r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7d612f7c91d55501276a385a30dbadb121e7bd9f)
Diffstat (limited to 'src/kernel/qdropsite.cpp')
| -rw-r--r-- | src/kernel/qdropsite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/qdropsite.cpp b/src/kernel/qdropsite.cpp index 8dd44a2cc..4f8a88a94 100644 --- a/src/kernel/qdropsite.cpp +++ b/src/kernel/qdropsite.cpp @@ -64,11 +64,11 @@ Constructs a TQDropSite to handle events for the widget \a self. Pass \c this as the \a self parameter. - This enables dropping by calling TQWidget::setAcceptDrops(TRUE). + This enables dropping by calling TQWidget::setAcceptDrops(true). */ TQDropSite::TQDropSite( TQWidget* self ) { - self->setAcceptDrops( TRUE ); + self->setAcceptDrops( true ); } /*! |
