summaryrefslogtreecommitdiffstats
path: root/src/svnqt/wc.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-03-16 14:46:59 +0900
committerMichele Calgaro <[email protected]>2025-03-16 14:56:22 +0900
commit76c67c49ce863d214f4a365b443663597e4f6ff9 (patch)
tree7beed17146d738067d789bc12f7603249f4f8e73 /src/svnqt/wc.cpp
parent14c622e80a2f4e10689c9548f0b26e7b6e815cbf (diff)
downloadtdesvn-master.tar.gz
tdesvn-master.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/svnqt/wc.cpp')
-rw-r--r--src/svnqt/wc.cpp4
1 files changed, 2 insertions, 2 deletions
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);
}