Kaydet (Commit) fdbe9a90 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:redundantcast: redundant static_casts in toolkit

Change-Id: Iee61c812384e24a9ac68f1e0ee4ba590838442ca
üst e26dfe3a
......@@ -121,7 +121,7 @@ void ScrollableWrapper<T>::lcl_Scroll( long nX, long nY )
template< class T>
void ScrollableWrapper<T>::LinkStubScrollBarHdl( void* pThis, ScrollBar* pCaller)
{
static_cast<ScrollableWrapper<T>*>(pThis)->ScrollBarHdl( static_cast<ScrollBar*>(pCaller) );
static_cast<ScrollableWrapper<T>*>(pThis)->ScrollBarHdl( pCaller );
}
template< class T>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment