summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/VLineProperties.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-23 10:04:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-23 11:22:08 +0200
commit0b2f1292b3504b54e3799cd3d942365058360347 (patch)
treeb36fbf6339ae09d1d16cf8c23c7f46d0767c6dcc /chart2/source/view/main/VLineProperties.cxx
parented5abacda979d05fa4328953662ea98e6afa3c51 (diff)
loplugin:comparisonwithconstant in chart2
Change-Id: I95787007b26cdcf0d5d1617ecd0e55d377b551d7 Reviewed-on: https://gerrit.libreoffice.org/37941 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/view/main/VLineProperties.cxx')
-rw-r--r--chart2/source/view/main/VLineProperties.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/main/VLineProperties.cxx b/chart2/source/view/main/VLineProperties.cxx
index 2c0330bf2ff9..614770a199de 100644
--- a/chart2/source/view/main/VLineProperties.cxx
+++ b/chart2/source/view/main/VLineProperties.cxx
@@ -66,7 +66,7 @@ bool VLineProperties::isLineVisible() const
{
sal_Int16 nLineTransparence=0;
this->Transparence >>= nLineTransparence;
- if(100!=nLineTransparence)
+ if(nLineTransparence!=100)
{
bRet = true;
}