| 698 | } |
| 699 | |
| 700 | bool |
| 701 | Editables::has_selection () |
| 702 | { |
| 703 | for (iterator e = begin (); e != end (); ++e) { |
| 704 | if (e->has_selection ()) { |
| 705 | return true; |
| 706 | } |
| 707 | } |
| 708 | return false; |
| 709 | } |
| 710 | |
| 711 | void |
| 712 | Editables::edit_cancel () |
no test coverage detected