Kaydet (Commit) 254b11a2 authored tarafından Julien Nabet's avatar Julien Nabet

Prefer prefix ++/-- operators for non-primitive types

Change-Id: Ib799053921886d1bd524bf4ffe3f586e4c676572
üst 31b93b86
......@@ -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() )
......
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