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

Improved loplugin:redundantcast (const-qualified typedefs): basctl

Change-Id: Ib17804ca6ddbacdadb50f97c19636e245e7eabe1
Reviewed-on: https://gerrit.libreoffice.org/56692
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 671538c6
......@@ -540,9 +540,9 @@ void ModulWindow::UpdateBreakPoint( const BreakPoint& rBrk )
CheckCompileBasic();
if ( rBrk.bEnabled )
m_xModule->SetBP( static_cast<sal_uInt16>(rBrk.nLine) );
m_xModule->SetBP( rBrk.nLine );
else
m_xModule->ClearBP( static_cast<sal_uInt16>(rBrk.nLine) );
m_xModule->ClearBP( rBrk.nLine );
}
}
......
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