Skip to content

Remove obsolete call 'rects', use begin / end iterators.

Tomaz Canabrava requested to merge tcanabrava/konsole:removeObsolete into master

rects creates a temporary vector with all the rectangles and returns the result, destructing in the end. we don't need that if we are only interested in iterating thru the rects. QRegion has begin / end so it's usable in Q_FOREACH and range based for.

Merge request reports