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/webqueryciteseerx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/webqueryciteseerx.cpp') diff --git a/src/webqueryciteseerx.cpp b/src/webqueryciteseerx.cpp index f84551e..f023c5d 100644 --- a/src/webqueryciteseerx.cpp +++ b/src/webqueryciteseerx.cpp @@ -307,7 +307,7 @@ namespace KBibTeX else if ( !m_aborted ) { m_currentParser = m_queryQueue.front().parser; - TDEIO::Job *job = TDEIO::storedGet( m_queryQueue.front().url, FALSE, FALSE ); + TDEIO::Job *job = TDEIO::storedGet( m_queryQueue.front().url, false, false ); m_queryQueue.pop_front(); connect( job, TQ_SIGNAL( result( TDEIO::Job * ) ), this, TQ_SLOT( getData( TDEIO::Job * ) ) ); } -- cgit v1.2.3