diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-24 08:57:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-24 08:58:05 +0200 |
commit | 0a82645c360158f9cc0fdabe2a52f1ff8f981bed (patch) | |
tree | fdb1035983220bf588f1f77de7a0d5f2b1f0a861 /svx | |
parent | 6ba8b7f5eacac969e4781d63718083a05491b1bc (diff) |
loplugin: cstylecast
Change-Id: Ia0f5f0d0efbe4693aba347bff32cd694117251fe
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdotxat.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotxat.cxx b/svx/source/svdraw/svdotxat.cxx index 47e402e5fe59..293e011589b7 100644 --- a/svx/source/svdraw/svdotxat.cxx +++ b/svx/source/svdraw/svdotxat.cxx @@ -170,7 +170,7 @@ bool SdrTextObj::AdjustTextFrameWidthAndHeight( Rectangle& rR, bool bHgt, bool b if (pOutlinerParaObject) { rOutliner.SetText(*pOutlinerParaObject); - rOutliner.SetFixedCellHeight(((const SdrTextFixedCellHeightItem&)GetMergedItem(SDRATTR_TEXT_USEFIXEDCELLHEIGHT)).GetValue()); + rOutliner.SetFixedCellHeight(static_cast<const SdrTextFixedCellHeightItem&>(GetMergedItem(SDRATTR_TEXT_USEFIXEDCELLHEIGHT)).GetValue()); } if (bWdtGrow) |