| 733 | } |
| 734 | |
| 735 | void DrawingProgramSelection::erase_component(CanvasComponentContainer::ObjInfo* objToCheck) { |
| 736 | check_add_stroke_color_change_undo(); |
| 737 | |
| 738 | std::erase(selectedSet, objToCheck); |
| 739 | if(selectedSet.empty()) |
| 740 | reset_all(); |
| 741 | } |
| 742 | |
| 743 | CanvasComponentContainer::ObjInfo* DrawingProgramSelection::get_front_object_colliding_with_in_editing_layer(const SkPath& cC) { |
| 744 | CanvasComponentContainer::ObjInfo* p = nullptr; |
no test coverage detected