diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:43:44 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:43:44 +0900 |
| commit | ddecb73086f438148d61910e8fb0a8340d3cf86b (patch) | |
| tree | 39d3ac86845c6921fd3b497d9a81ac656167090e /src/torkactivelabel.cpp | |
| parent | d012930907802f42dbc4d6452220eaeb4f9c206d (diff) | |
| download | tork-ddecb73086f438148d61910e8fb0a8340d3cf86b.tar.gz tork-ddecb73086f438148d61910e8fb0a8340d3cf86b.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/torkactivelabel.cpp')
| -rw-r--r-- | src/torkactivelabel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/torkactivelabel.cpp b/src/torkactivelabel.cpp index db3529e..e0d314f 100644 --- a/src/torkactivelabel.cpp +++ b/src/torkactivelabel.cpp @@ -31,14 +31,14 @@ TorkActiveLabel::TorkActiveLabel( const TQString &text,TQWidget * parent, const char * name) : - KActiveLabel( text,parent, name ), mousePressed( FALSE ) + KActiveLabel( text,parent, name ), mousePressed( false ) { } TorkActiveLabel::TorkActiveLabel( TQWidget * parent, const char * name) : - KActiveLabel( parent, name ), mousePressed( FALSE ) + KActiveLabel( parent, name ), mousePressed( false ) { |
