summaryrefslogtreecommitdiff
path: root/registry/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:00:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:24 +0100
commit9548c0bd597c1d5f1e5fde3118cb6905bd86bf6e (patch)
tree958b4dffd20417dab63c8d22de26d2577126b3a3 /registry/tools
parent373de64a3613fc494e9315c083f950b48b6b985e (diff)
bool improvements
Change-Id: I60fc93beb58c548c7278eaf69f1d0a448b5c27f1
Diffstat (limited to 'registry/tools')
-rw-r--r--registry/tools/regcompare.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/registry/tools/regcompare.cxx b/registry/tools/regcompare.cxx
index e3cbfedb7475..dd63bff7609e 100644
--- a/registry/tools/regcompare.cxx
+++ b/registry/tools/regcompare.cxx
@@ -202,7 +202,7 @@ bool Options_Impl::initOptions_Impl (std::vector< std::string > & rArgs)
{
return badOption("invalid", (*first).c_str());
}
- m_bForceOutput = sal_True;
+ m_bForceOutput = true;
break;
}
case 'c':
@@ -212,7 +212,7 @@ bool Options_Impl::initOptions_Impl (std::vector< std::string > & rArgs)
{
return badOption("invalid", (*first).c_str());
}
- m_bFullCheck = sal_True;
+ m_bFullCheck = true;
break;
}
case 't':
@@ -222,7 +222,7 @@ bool Options_Impl::initOptions_Impl (std::vector< std::string > & rArgs)
{
return badOption("invalid", (*first).c_str());
}
- m_bUnoTypeCheck = sal_True;
+ m_bUnoTypeCheck = true;
break;
}
case 'u':