diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-27 14:18:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-28 08:10:20 +0200 |
commit | 788e9b9f39e2e074a146642be60df4d005018356 (patch) | |
tree | cf8586fa2b6011f323f19350d1762163372afb3e /sc/source/ui/drawfunc/fuconpol.cxx | |
parent | d9026e13578e6714b2847a9adc0c0563708a0c74 (diff) |
loplugin: cstylecast
Change-Id: Ib0c5e17c9fba4b876b22c2a6d636d4fd19f3a280
Diffstat (limited to 'sc/source/ui/drawfunc/fuconpol.cxx')
-rw-r--r-- | sc/source/ui/drawfunc/fuconpol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/drawfunc/fuconpol.cxx b/sc/source/ui/drawfunc/fuconpol.cxx index 6265683fdd68..babcafd315e7 100644 --- a/sc/source/ui/drawfunc/fuconpol.cxx +++ b/sc/source/ui/drawfunc/fuconpol.cxx @@ -318,7 +318,7 @@ SdrObject* FuConstPolygon::CreateDefaultObject(const sal_uInt16 nID, const Recta } } - ((SdrPathObj*)pObj)->SetPathPoly(aPoly); + static_cast<SdrPathObj*>(pObj)->SetPathPoly(aPoly); } else { |