diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:40:11 +0900 |
| commit | 3233d6a066667673e676dee95db7ca1419087018 (patch) | |
| tree | ef8462b8cce8e3cd60aa3121011b8cbb05ad6542 /kbfxlib/common/kbfxpixmaplabel.cpp | |
| parent | 29aac93d751ef6b7aa721321df8b94679813916e (diff) | |
| download | kbfx-3233d6a066667673e676dee95db7ca1419087018.tar.gz kbfx-3233d6a066667673e676dee95db7ca1419087018.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbfxlib/common/kbfxpixmaplabel.cpp')
| -rw-r--r-- | kbfxlib/common/kbfxpixmaplabel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbfxlib/common/kbfxpixmaplabel.cpp b/kbfxlib/common/kbfxpixmaplabel.cpp index a9f3dc4..c3affd6 100644 --- a/kbfxlib/common/kbfxpixmaplabel.cpp +++ b/kbfxlib/common/kbfxpixmaplabel.cpp @@ -28,9 +28,9 @@ KbfxPixmapLabel::KbfxPixmapLabel ( TQWidget *parent, const char *name, WFlags fl // setFrameShadow(TQLabel::Sunken); setFrameShape ( TQLabel::LineEditPanel ); setFrameShadow ( TQLabel::Plain ); - setScaledContents ( FALSE ); + setScaledContents ( false ); setAlignment ( int ( TQLabel::WordBreak | TQLabel::AlignCenter ) ); - setMouseTracking ( TRUE ); + setMouseTracking ( true ); } KbfxPixmapLabel::~KbfxPixmapLabel() @@ -42,7 +42,7 @@ void KbfxPixmapLabel::normalize () { setFrameShape ( TQLabel::NoFrame ); setFrameShadow ( TQLabel::Plain ); - setScaledContents ( FALSE ); + setScaledContents ( false ); setAlignment ( int ( TQLabel::WordBreak | TQLabel::AlignCenter ) ); } |
