| 1819 | //----------------------------------------------------------------------------- |
| 1820 | |
| 1821 | bool GuiControl::getCanSaveParent() |
| 1822 | { |
| 1823 | GuiControl *walk = this; |
| 1824 | while(walk) |
| 1825 | { |
| 1826 | if(!walk->getCanSave()) |
| 1827 | return false; |
| 1828 | |
| 1829 | walk = walk->getParent(); |
| 1830 | } |
| 1831 | |
| 1832 | return true; |
| 1833 | } |
| 1834 | |
| 1835 | //----------------------------------------------------------------------------- |
| 1836 |
nothing calls this directly
no test coverage detected