| 44 | void Form::unloadResources() { Control::unloadResources(); } |
| 45 | |
| 46 | sp<Control> Form::copyTo(sp<Control> CopyParent) |
| 47 | { |
| 48 | sp<Form> copy; |
| 49 | if (CopyParent) |
| 50 | { |
| 51 | copy = CopyParent->createChild<Form>(); |
| 52 | } |
| 53 | else |
| 54 | { |
| 55 | copy = mksp<Form>(); |
| 56 | } |
| 57 | copyControlData(copy); |
| 58 | return copy; |
| 59 | } |
| 60 | |
| 61 | sp<Form> Form::loadForm(const UString &path) |
| 62 | { |
no outgoing calls
no test coverage detected