| 1439 | //----------------------------------------------------------------------------- |
| 1440 | |
| 1441 | void GuiEditCtrl::bringToFront() |
| 1442 | { |
| 1443 | if( getNumSelected() != 1 ) |
| 1444 | return; |
| 1445 | |
| 1446 | GuiControl* ctrl = mSelectedControls.first(); |
| 1447 | ctrl->getParent()->pushObjectToBack( ctrl ); |
| 1448 | } |
| 1449 | |
| 1450 | //----------------------------------------------------------------------------- |
| 1451 |
no test coverage detected