summaryrefslogtreecommitdiffstats
path: root/src/traylabelmgr.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:30:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:30:07 +0900
commit04e4c81e885b8090a775d88d525d4c66c6dcba05 (patch)
tree41c53d960ea011d2c60df07775d7fab0d1ef0501 /src/traylabelmgr.cpp
parente7ee4565dfcfb2d3c2b7d5586a8e8f5421d5ee5c (diff)
downloadtdedocker-04e4c81e885b8090a775d88d525d4c66c6dcba05.tar.gz
tdedocker-04e4c81e885b8090a775d88d525d4c66c6dcba05.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/traylabelmgr.cpp')
-rw-r--r--src/traylabelmgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/traylabelmgr.cpp b/src/traylabelmgr.cpp
index 6eacdf7..61f08e1 100644
--- a/src/traylabelmgr.cpp
+++ b/src/traylabelmgr.cpp
@@ -608,7 +608,7 @@ bool TrayLabelMgr::x11EventFilter(XEvent *ev)
bool res = t->x11EventFilter(ev);
if (w == (((XAnyEvent *)ev)->window)) return res;
if (w != None) ret |= res;
- else if (res) return TRUE;
+ else if (res) return true;
}
return ret;