summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-19 13:10:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-19 14:38:35 +0200
commit8fced917aa1af58216cbde56720f2f473eed86d9 (patch)
tree755d0dfba1fe4a5c34860d0d1ea4c6ce01525405 /basic
parentfile UCP: Dir entries can disappear during non-atomic traversal (diff)
downloadcore-8fced917aa1af58216cbde56720f2f473eed86d9.tar.gz
core-8fced917aa1af58216cbde56720f2f473eed86d9.zip
clang-tidy readability-simplify-boolean-expr in accessibility..cui
Change-Id: Iae27da322c6ede592e6b268fb2210d3525ed22cc Reviewed-on: https://gerrit.libreoffice.org/36677 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbxmod.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 3316b1a2be53..50b435c7c80a 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -1688,9 +1688,7 @@ bool SbModule::ExceedsLegacyModuleSize()
{
if ( !IsCompiled() )
Compile();
- if ( pImage && pImage->ExceedsLegacyLimits() )
- return true;
- return false;
+ return pImage && pImage->ExceedsLegacyLimits();
}
class ErrorHdlResetter