| 1438 | //----------------------------------------------------------------------------- |
| 1439 | |
| 1440 | void GuiEditCtrl::selectAll() |
| 1441 | { |
| 1442 | GuiControl::iterator i; |
| 1443 | |
| 1444 | clearSelection(); |
| 1445 | for(i = getCurrentAddSet()->begin(); i != getCurrentAddSet()->end(); i++) |
| 1446 | { |
| 1447 | GuiControl *ctrl = dynamic_cast<GuiControl *>(*i); |
| 1448 | addSelection( ctrl ); |
| 1449 | } |
| 1450 | } |
| 1451 | |
| 1452 | //----------------------------------------------------------------------------- |
| 1453 |
no test coverage detected