From 76c67c49ce863d214f4a365b443663597e4f6ff9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 16 Mar 2025 14:46:59 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- src/svnqt/wc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/svnqt/wc.cpp') diff --git a/src/svnqt/wc.cpp b/src/svnqt/wc.cpp index 0dccb14..413fb10 100644 --- a/src/svnqt/wc.cpp +++ b/src/svnqt/wc.cpp @@ -86,11 +86,11 @@ namespace svn svn_error_t * error = 0; svn_wc_adm_access_t *adm_access; const svn_wc_entry_t *entry; - error = svn_wc_adm_probe_open2(&adm_access,0,itemPath.path().TOUTF8(),FALSE,0,pool); + error = svn_wc_adm_probe_open2(&adm_access,0,itemPath.path().TOUTF8(),false,0,pool); if (error!=0) { throw ClientException(error); } - error = svn_wc_entry(&entry,itemPath.path().TOUTF8(),adm_access,FALSE,pool); + error = svn_wc_entry(&entry,itemPath.path().TOUTF8(),adm_access,false,pool); if (error!=0) { throw ClientException(error); } -- cgit v1.2.1