summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive3d
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-19 08:12:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-19 10:02:39 +0200
commit2c1b7e8d6a7fa22cb91919238418816671c3a497 (patch)
tree6f356017d24dffcd25261295ab25a21b738dc835 /drawinglayer/source/primitive3d
parentad18bb24d51e4f735085d50c496d28bd637dbb0b (diff)
clang-tidy readability-container-size-empty
Change-Id: I1df70b7dff5ebb6048f7fc618789faa15ca5d422 Reviewed-on: https://gerrit.libreoffice.org/61967 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'drawinglayer/source/primitive3d')
-rw-r--r--drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx2
-rw-r--r--drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx2
-rw-r--r--drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx b/drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx
index dcea2f877543..cbcbfda8b649 100644
--- a/drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx
+++ b/drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx
@@ -172,7 +172,7 @@ namespace drawinglayer
{
Primitive3DContainer aRetval;
- if(r3DPolyPolygonVector.size())
+ if(!r3DPolyPolygonVector.empty())
{
// create list of simple fill primitives
aRetval.resize(r3DPolyPolygonVector.size());
diff --git a/drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx b/drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx
index 057dbe127fdb..4a22113bb8cd 100644
--- a/drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx
+++ b/drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx
@@ -377,7 +377,7 @@ namespace drawinglayer
{
// This can be made dependent of getSdrLFSAttribute().getFill() and getSdrLFSAttribute().getLine()
// again when no longer geometry is needed for non-visible 3D objects as it is now for chart
- if(getPolyPolygon().count() && !maSlices.size())
+ if(getPolyPolygon().count() && maSlices.empty())
{
::osl::MutexGuard aGuard( m_aMutex );
diff --git a/drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx b/drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx
index e0a9bc3adc80..363f174b3494 100644
--- a/drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx
+++ b/drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx
@@ -229,7 +229,7 @@ namespace drawinglayer
{
// This can be made dependent of getSdrLFSAttribute().getFill() and getSdrLFSAttribute().getLine()
// again when no longer geometry is needed for non-visible 3D objects as it is now for chart
- if(getPolyPolygon().count() && !maSlices.size())
+ if(getPolyPolygon().count() && maSlices.empty())
{
::osl::MutexGuard aGuard( m_aMutex );