Kaydet (Commit) bbda9919 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706056 Unintended sign extension

Change-Id: Iafb36f8135893186710ae3a939e50596a372d065
üst 3223306b
...@@ -2019,9 +2019,10 @@ IMPL_LINK_NOARG(CustomPropertiesControl, RemovedHdl) ...@@ -2019,9 +2019,10 @@ IMPL_LINK_NOARG(CustomPropertiesControl, RemovedHdl)
void CustomPropertiesControl::AddLine( const OUString& sName, Any& rAny, bool bInteractive ) void CustomPropertiesControl::AddLine( const OUString& sName, Any& rAny, bool bInteractive )
{ {
m_pPropertiesWin->AddLine( sName, rAny ); m_pPropertiesWin->AddLine( sName, rAny );
m_pVertScroll->SetRangeMax( m_pPropertiesWin->GetVisibleLineCount() + 1 ); long nLineCount = m_pPropertiesWin->GetVisibleLineCount();
if ( bInteractive && m_pPropertiesWin->GetOutputSizePixel().Height() < m_pPropertiesWin->GetVisibleLineCount() * m_pPropertiesWin->GetLineHeight() ) m_pVertScroll->SetRangeMax(nLineCount + 1);
m_pVertScroll->DoScroll( m_pPropertiesWin->GetVisibleLineCount() + 1 ); if ( bInteractive && m_pPropertiesWin->GetOutputSizePixel().Height() < nLineCount * m_pPropertiesWin->GetLineHeight() )
m_pVertScroll->DoScroll(nLineCount + 1);
} }
// class SfxCustomPropertiesPage ----------------------------------------- // class SfxCustomPropertiesPage -----------------------------------------
......
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