| 1425 | //----------------------------------------------------------------------------- |
| 1426 | |
| 1427 | void GuiEditCtrl::selectAll() |
| 1428 | { |
| 1429 | GuiControl::iterator i; |
| 1430 | |
| 1431 | clearSelection(); |
| 1432 | for(i = getCurrentAddSet()->begin(); i != getCurrentAddSet()->end(); i++) |
| 1433 | { |
| 1434 | GuiControl *ctrl = dynamic_cast<GuiControl *>(*i); |
| 1435 | addSelection( ctrl ); |
| 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | //----------------------------------------------------------------------------- |
| 1440 |
no test coverage detected