summaryrefslogtreecommitdiff
path: root/extensions/source/logging/filehandler.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:16:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:25:40 +0200
commit2ee796ba49a13c38c1eb1e98c5e8b78d1ce18b64 (patch)
treedc1c62db36a2824a0e90cd77d4382edaab216ba2 /extensions/source/logging/filehandler.cxx
parent4bff11d579dce8e2bb4f35f9218003bb28cf5a01 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Ief96e7038461f514d8fe5bf16b7181b122715775
Diffstat (limited to 'extensions/source/logging/filehandler.cxx')
-rw-r--r--extensions/source/logging/filehandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/logging/filehandler.cxx b/extensions/source/logging/filehandler.cxx
index 686ccb63692e..ae155fbc544f 100644
--- a/extensions/source/logging/filehandler.cxx
+++ b/extensions/source/logging/filehandler.cxx
@@ -322,14 +322,14 @@ namespace logging
MethodGuard aGuard( *this );
if ( !impl_prepareFile_nothrow() )
- return sal_False;
+ return false;
OString sEntry;
if ( !m_aHandlerHelper.formatForPublishing( _rRecord, sEntry ) )
- return sal_False;
+ return false;
impl_writeString_nothrow( sEntry );
- return sal_True;
+ return true;
}
OUString SAL_CALL FileHandler::getImplementationName() throw(RuntimeException, std::exception)