summaryrefslogtreecommitdiffstats
path: root/tdeprint/management/smbview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-13 09:38:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-15 18:46:42 +0900
commitad58630b34fc61754c763cf951004ef27e38d33d (patch)
tree168cf1d101c4583c84d02c116cd305763118277b /tdeprint/management/smbview.cpp
parentbedc43ef09d9569fb7643849e8f24dd46c379eba (diff)
downloadtdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.tar.gz
tdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeprint/management/smbview.cpp')
-rw-r--r--tdeprint/management/smbview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeprint/management/smbview.cpp b/tdeprint/management/smbview.cpp
index 99cc3bc94..6f4db992a 100644
--- a/tdeprint/management/smbview.cpp
+++ b/tdeprint/management/smbview.cpp
@@ -140,7 +140,7 @@ void SmbView::init()
while (!smb_stream.atEnd ())
{
TQString smb_line = smb_stream.readLine ();
- if (smb_line.contains (wins_keyword, FALSE) > 0)
+ if (smb_line.contains (wins_keyword, false) > 0)
{
TQString key = smb_line.section ('=', 0, 0);
key = key.stripWhiteSpace();