| 155 | } |
| 156 | |
| 157 | void |
| 158 | Editables::copy () |
| 159 | { |
| 160 | if (has_selection ()) { |
| 161 | db::Clipboard::instance ().clear (); |
| 162 | for (iterator e = begin (); e != end (); ++e) { |
| 163 | e->copy (); |
| 164 | } |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | db::DBox |
| 169 | Editables::selection_bbox () |
nothing calls this directly
no test coverage detected