From 664580ffc694a1f9e7ab25d4636ca9696a38d958 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 7 Apr 2025 15:50:40 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit 66230b1cca2fa5c95886d8cf708829e4bfac2b10) --- libksirtet/lib/socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libksirtet/lib/socket.cpp') diff --git a/libksirtet/lib/socket.cpp b/libksirtet/lib/socket.cpp index 6defc94b..0298645c 100644 --- a/libksirtet/lib/socket.cpp +++ b/libksirtet/lib/socket.cpp @@ -28,7 +28,7 @@ Socket::Socket(KExtendedSocket *s, bool createNotifier, if (createNotifier) { _notifier = new TQSocketNotifier(s->fd(), TQSocketNotifier::Read, parent, name); - _notifier->setEnabled(FALSE); + _notifier->setEnabled(false); } } -- cgit v1.2.3