summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/skeletonmaker.cxx2
-rw-r--r--unodevtools/source/unodevtools/options.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
index b403c7f08647..fcca636b5e30 100644
--- a/unodevtools/source/skeletonmaker/skeletonmaker.cxx
+++ b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
@@ -138,7 +138,7 @@ SAL_IMPLEMENT_MAIN()
sal_uInt32 nPos = 0;
OUString arg, sOption;
- sal_Bool bOption=sal_False;
+ sal_Bool bOption=false;
// check command
rtl_getAppCommandArg(nPos++, &arg.pData);
diff --git a/unodevtools/source/unodevtools/options.cxx b/unodevtools/source/unodevtools/options.cxx
index 47a49e552563..d3302bb2c3f1 100644
--- a/unodevtools/source/unodevtools/options.cxx
+++ b/unodevtools/source/unodevtools/options.cxx
@@ -74,7 +74,7 @@ bool readOption( sal_Bool * pbOpt, const sal_Char * pOpt,
(aArg.startsWith("--") && aOpt.equalsIgnoreAsciiCase(aArg.copy(2))) )
{
++(*pnIndex);
- *pbOpt = sal_True;
+ *pbOpt = true;
SAL_INFO("unodevtools", "identified option --" << pOpt);
return true;
}