diff options
-rw-r--r-- | svx/source/svdraw/svdotextdecomposition.cxx | 2 |
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); |