summaryrefslogtreecommitdiff
path: root/cui/source/options/optfltr.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 16:24:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 16:24:27 +0200
commita4fdc347f8809638af5c598346ec4c978ee40dbe (patch)
treefed09f1d95b94dc4ab7d07ad1609ea960ddc2584 /cui/source/options/optfltr.cxx
parent85a2ec80c65dbcc7c031d21f584d0417f66f2164 (diff)
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: Ieecc2f050499823e131504ecd487edc0fe3ea30a
Diffstat (limited to 'cui/source/options/optfltr.cxx')
-rw-r--r--cui/source/options/optfltr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optfltr.cxx b/cui/source/options/optfltr.cxx
index ede4059fdbc3..0de47b4b3b7d 100644
--- a/cui/source/options/optfltr.cxx
+++ b/cui/source/options/optfltr.cxx
@@ -452,7 +452,7 @@ void OfaMSFilterTabPage2::MSFltrSimpleTable::KeyInput( const KeyEvent& rKEvt )
SvTreeListEntry* pEntry = GetEntry( nSelPos );
bool bIsChecked = ( GetCheckButtonState( pEntry, nCol ) == SV_BUTTON_CHECKED );
CheckEntryPos( nSelPos, nCol, !bIsChecked );
- CallImplEventListeners( VCLEVENT_CHECKBOX_TOGGLE, (void*)pEntry );
+ CallImplEventListeners( VCLEVENT_CHECKBOX_TOGGLE, static_cast<void*>(pEntry) );
}
else
{