summaryrefslogtreecommitdiff
path: root/cpputools/source/sp2bv
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-08 11:44:15 +0200
committerNoel Grandin <noel@peralex.com>2014-05-08 11:48:14 +0200
commit78b9537b6aca0f998f939988e6e1a56528d28baf (patch)
tree6b96ba6b37c32c3ba2ffa112aff990739642e063 /cpputools/source/sp2bv
parente5d0a9ad78ceb531018cb49c1d78b0f63ba92995 (diff)
various: sal_Bool->bool
Change-Id: I30fa5227f30373f95060148f269450d2945c1bb9
Diffstat (limited to 'cpputools/source/sp2bv')
-rw-r--r--cpputools/source/sp2bv/sp2bv.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpputools/source/sp2bv/sp2bv.cxx b/cpputools/source/sp2bv/sp2bv.cxx
index a4147dfaafb8..b3853fc07985 100644
--- a/cpputools/source/sp2bv/sp2bv.cxx
+++ b/cpputools/source/sp2bv/sp2bv.cxx
@@ -24,7 +24,7 @@
#include "rtl/ustring.hxx"
#include "rtl/ustrbuf.h"
-static sal_Bool hasOption(char const * szOption, int argc, char** argv);
+static bool hasOption(char const * szOption, int argc, char** argv);
#define HELP_TEXT \
@@ -109,14 +109,14 @@ int main(int argc, char **argv)
-static sal_Bool hasOption(char const * szOption, int argc, char** argv)
+static bool hasOption(char const * szOption, int argc, char** argv)
{
- sal_Bool retVal= sal_False;
+ bool retVal = false;
for(sal_Int16 i= 1; i < argc; i++)
{
if( ! strcmp(argv[i], szOption))
{
- retVal= sal_True;
+ retVal = true;
break;
}
}