summaryrefslogtreecommitdiffstats
path: root/src/torkactivelabel.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 13:43:44 +0900
committerSlávek Banko <slavek.banko@axis.cz>2026-01-12 16:55:43 +0100
commit4aaec4f694c8dcd82421e787da47b2fb3503aa65 (patch)
tree94b36ce2746bf6797ee4395a3c8daf897cd1cd73 /src/torkactivelabel.cpp
parenta661e44f1660c2f65ddc9ecdbf88edd509d7e8b9 (diff)
downloadtork-r14.1.x.tar.gz
tork-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/falser14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ddecb73086f438148d61910e8fb0a8340d3cf86b)
Diffstat (limited to 'src/torkactivelabel.cpp')
-rw-r--r--src/torkactivelabel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/torkactivelabel.cpp b/src/torkactivelabel.cpp
index f03dbf4..424c6e2 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 )
{