| 2222 | } |
| 2223 | |
| 2224 | void Map::findAllObjectsAt( |
| 2225 | const MapCoordF& coord, |
| 2226 | qreal tolerance, |
| 2227 | bool treat_areas_as_paths, |
| 2228 | bool extended_selection, |
| 2229 | bool include_hidden_objects, |
| 2230 | bool include_protected_objects, |
| 2231 | SelectionInfoVector& out ) const |
| 2232 | { |
| 2233 | for (const MapPart* part : parts) |
| 2234 | part->findObjectsAt(coord, tolerance, treat_areas_as_paths, extended_selection, include_hidden_objects, include_protected_objects, out); |
| 2235 | } |
| 2236 | |
| 2237 | void Map::findObjectsAtBox( |
| 2238 | const MapCoordF& corner1, |
no test coverage detected