| 1925 | //----------------------------------------------------------------------------- |
| 1926 | |
| 1927 | GuiControl *GuiControl::getParent() |
| 1928 | { |
| 1929 | SimObject *obj = getGroup(); |
| 1930 | if (GuiControl* gui = dynamic_cast<GuiControl*>(obj)) |
| 1931 | return gui; |
| 1932 | return 0; |
| 1933 | } |
| 1934 | |
| 1935 | //----------------------------------------------------------------------------- |
| 1936 |
no outgoing calls
no test coverage detected