summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-09-20 16:46:31 +0300
committerTor Lillqvist <tml@collabora.com>2015-09-20 16:46:31 +0300
commit20b7959ab980310119232fd2395008a89d6ea581 (patch)
tree422579b8985bdd0ef4e85d4e890fa686611c538f /svx
parent16964a87c08b46c4fce0695812cbc249225fca41 (diff)
WaE: loplugin:cstylecast
Change-Id: I953467bd0713a462cb9dcf66c8119eb1883553a2
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdotextdecomposition.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 3ad8f7121e76..b9f4ca9d1da8 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -1422,7 +1422,7 @@ void SdrTextObj::impHandleChainingEventsDuringDecomposition(SdrOutliner &rOutlin
// Some debug output
size_t nObjCount = pPage->GetObjCount();
for (unsigned i = 0; i < nObjCount; i++) {
- SdrTextObj *pCurObj = (SdrTextObj *) pPage->GetObj(i);
+ SdrTextObj *pCurObj = static_cast<SdrTextObj *>(pPage->GetObj(i));
if (pCurObj == this) {
SAL_INFO("svx.chaining", "Working on TextBox " << i);