| 1452 | //----------------------------------------------------------------------------- |
| 1453 | |
| 1454 | void GuiEditCtrl::bringToFront() |
| 1455 | { |
| 1456 | if( getNumSelected() != 1 ) |
| 1457 | return; |
| 1458 | |
| 1459 | GuiControl* ctrl = mSelectedControls.first(); |
| 1460 | ctrl->getParent()->pushObjectToBack( ctrl ); |
| 1461 | } |
| 1462 | |
| 1463 | //----------------------------------------------------------------------------- |
| 1464 |
no test coverage detected