diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 08:27:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 09:46:28 +0200 |
commit | 5fb66ae5595b7435e8954df31473fad15a74b8c2 (patch) | |
tree | 3b3f0ce3eafa10557a7e78b10851c97ee16c7ebf /chart2 | |
parent | 181a1b36ac728e3a43e054496ceb53fd3315abdb (diff) |
clang-tidy readability-simplify-boolean-expr
Change-Id: I78fa01a6c803dec782488490b730af3a11814d64
Reviewed-on: https://gerrit.libreoffice.org/61902
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/main/ChartController.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx index b694d02648aa..d9f246fc2bd2 100644 --- a/chart2/source/controller/main/ChartController.cxx +++ b/chart2/source/controller/main/ChartController.cxx @@ -990,7 +990,7 @@ namespace bool lcl_isFormatObjectCommand( const OUString& aCommand ) { - if( aCommand == "MainTitle" + return aCommand == "MainTitle" || aCommand == "SubTitle" || aCommand == "XTitle" || aCommand == "YTitle" @@ -1036,12 +1036,7 @@ bool lcl_isFormatObjectCommand( const OUString& aCommand ) || aCommand == "FormatStockLoss" || aCommand == "FormatStockGain" || aCommand == "FormatMajorGrid" - || aCommand == "FormatMinorGrid" - ) - return true; - - // else - return false; + || aCommand == "FormatMinorGrid"; } } // anonymous namespace |