summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-07-26 14:30:03 +0300
committerTor Lillqvist <tml@collabora.com>2016-07-26 14:30:03 +0300
commit20438e3e63bc78e877f344437448a038a8a01985 (patch)
treefc0d9b1d43ca48defc1e181f15623ef26c1a7933 /svx
parentc27b0a8b2d2910b2ac9ea56a42fe8b2abc95e32a (diff)
loplugin:redundantcast
Change-Id: I4b7341a180271d5e0f9b06a9815d1914d698eb11
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpntv.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx
index 8b6dbdbd0806..9b0807830477 100644
--- a/svx/source/svdraw/svdpntv.cxx
+++ b/svx/source/svdraw/svdpntv.cxx
@@ -755,7 +755,7 @@ void SdrPaintView::EndCompleteRedraw(SdrPaintWindow& rPaintWindow, bool bPaintFo
if (pView->IsTextEdit() && pView->GetSdrPageView())
{
- static_cast<SdrView*>(pView)->TextEditDrawing(rPaintWindow);
+ pView->TextEditDrawing(rPaintWindow);
}
}
}