Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ib799053921886d1bd524bf4ffe3f586e4c676572
This commit is contained in:
parent
31b93b8600
commit
254b11a2c6
1 changed files with 1 additions and 1 deletions
|
@ -2131,7 +2131,7 @@ void Document::notifySelectionChange( sal_Int32 nFirst, sal_Int32 nLast )
|
|||
iLast = m_aVisibleEnd;
|
||||
if ( iFirst < iLast )
|
||||
{
|
||||
for ( Paragraphs::iterator i = iFirst; i != iLast; i++ )
|
||||
for ( Paragraphs::iterator i = iFirst; i != iLast; ++i )
|
||||
{
|
||||
::rtl::Reference< ParagraphImpl > xParagraph( getParagraph( i ) );
|
||||
if ( xParagraph.is() )
|
||||
|
|
Loading…
Reference in a new issue