* @brief Delete the layer properties node for the current layer list * * This method deletes the object that the iterator points to and invalidates * the iterator since the object that the iterator points to is no longer valid. */
| 535 | * the iterator since the object that the iterator points to is no longer valid. |
| 536 | */ |
| 537 | void delete_layer (LayerPropertiesConstIterator &iter) |
| 538 | { |
| 539 | delete_layer (current_layer_list (), iter); |
| 540 | } |
| 541 | |
| 542 | /** |
| 543 | * @brief Delete the layer properties node for the layer list with the given index |
no test coverage detected