From 278778f1151c2c3b4fade15afc7b94f624900b60 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 28 Mar 2025 12:35:55 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- src/findduplicates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/findduplicates.cpp') diff --git a/src/findduplicates.cpp b/src/findduplicates.cpp index ed0a4ba..bba1e66 100644 --- a/src/findduplicates.cpp +++ b/src/findduplicates.cpp @@ -413,7 +413,7 @@ namespace KBibTeX return -1; /** no value item found or is empty */ /** parse value item's text */ - bool ok = FALSE; + bool ok = false; int year = TQString( valueItem->text() ).toInt( &ok ); if ( !ok ) year = -1; -- cgit v1.2.3