cppcheck: prefer prefix variants

This commit is contained in:
Caolán McNamara 2010-12-29 21:10:34 +00:00
parent 4538875a16
commit beb70bd3d4

View file

@ -110,7 +110,7 @@ DataSupplier_Impl::~DataSupplier_Impl()
while ( it != end )
{
delete (*it);
it++;
++it;
}
}
@ -375,7 +375,7 @@ sal_Bool DataSupplier::getData()
if ( (*it).equals( DAVProperties::RESOURCETYPE ) )
break;
it++;
++it;
}
if ( it == end )