diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:19:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:25 +0200 |
commit | c763ceb4a6104ac4af504681babc069aa6ae5bd3 (patch) | |
tree | 21b50a4a0c3a9936aaa7ad8730ed06f8d59a4a9d /stoc/source/implementationregistration | |
parent | 88338ed6291f3552b583f539f1588984ec188e56 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I3a3295b538e79186914390b6da73cc8bc25419a5
Diffstat (limited to 'stoc/source/implementationregistration')
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index a5c663d2ff93..b5b21cbfc8bf 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -1610,7 +1610,7 @@ Sequence< OUString > ImplementationRegistration::getImplementations( { try { - xReg->open(OUString() /* in mem */, sal_False, sal_True); + xReg->open(OUString() /* in mem */, false, true); Reference < XRegistryKey > xImpl; { // only necessary for deleting the temporary variable of rootkey @@ -1723,7 +1723,7 @@ void ImplementationRegistration::doRegister( { try { - xReg->open(OUString() /* in mem */, sal_False, sal_True); + xReg->open(OUString() /* in mem */, false, true); { // only necessary for deleting the temporary variable of rootkey xSourceKey = xReg->getRootKey()->createKey( spool().slash_IMPLEMENTATIONS ); |