diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:10 +0200 |
commit | 9672e6c81e1ded79ff964d0a0d667e4e172c4475 (patch) | |
tree | 08fcf1368588060fe17a533ef9ae8b1253a8acc4 /svx/source/dialog/compressgraphicdialog.cxx | |
parent | 47df2b2a2e13e44e45861d1e03c80632ae6777a5 (diff) |
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: I76a990da8aba9b62b3925d9632150930656e510f
Diffstat (limited to 'svx/source/dialog/compressgraphicdialog.cxx')
-rw-r--r-- | svx/source/dialog/compressgraphicdialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/compressgraphicdialog.cxx b/svx/source/dialog/compressgraphicdialog.cxx index 0360ea2e4b0a..48f763a7d791 100644 --- a/svx/source/dialog/compressgraphicdialog.cxx +++ b/svx/source/dialog/compressgraphicdialog.cxx @@ -401,7 +401,7 @@ SdrGrafObj* CompressGraphicsDialog::GetCompressedSdrGrafObj() { if ( m_dResolution > 0.0 ) { - SdrGrafObj* pNewObject = (SdrGrafObj*) m_pGraphicObj->Clone(); + SdrGrafObj* pNewObject = m_pGraphicObj->Clone(); if ( m_pReduceResolutionCB->IsChecked() ) { |