summaryrefslogtreecommitdiffstats
path: root/src/ccInstHelper.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-03-16 14:45:49 +0900
committerMichele Calgaro <[email protected]>2025-03-16 14:45:49 +0900
commit91bb75ebee061dc5c9686e01fb83c93202f420c3 (patch)
treee427258b574d39f6e0f93fc09a7d8cd2fa40aa64 /src/ccInstHelper.cpp
parentbd6fa47f95c6f58ccc2b91094d9cee35750aede4 (diff)
downloadkdiff3-rename/true-false.tar.gz
kdiff3-rename/true-false.zip
Replace TRUE/FALSE with boolean values true/falserename/true-false
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/ccInstHelper.cpp')
-rw-r--r--src/ccInstHelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ccInstHelper.cpp b/src/ccInstHelper.cpp
index 055e2d6..1d8194c 100644
--- a/src/ccInstHelper.cpp
+++ b/src/ccInstHelper.cpp
@@ -156,7 +156,7 @@ int integrateWithClearCase( const char* subCommand, const char* kdiff3CommandPat
std::string kdiff3Command;
kdiff3Command.reserve( wKDiff3Command.length()+1 );
kdiff3Command.resize( wKDiff3Command.length() );
- BOOL bUsedDefaultChar = FALSE;
+ BOOL bUsedDefaultChar = false;
int successLen = WideCharToMultiByte( CP_ACP, 0,
wKDiff3Command.c_str(), int(wKDiff3Command.length()),
&kdiff3Command[0], int(kdiff3Command.length()), 0, &bUsedDefaultChar );