| 519 | } |
| 520 | public: |
| 521 | Convert<MyGUI::MenuItem *>::Type InsertItemAt( |
| 522 | Convert<size_t>::Type _index , |
| 523 | Convert<const MyGUI::UString &>::Type _name , |
| 524 | Convert<MyGUI::MenuItemType>::Type _type , |
| 525 | Convert<const std::string &>::Type _id , |
| 526 | Convert<MyGUI::Any>::Type _data ) |
| 527 | { |
| 528 | MMYGUI_CHECK_NATIVE(mNative); |
| 529 | return Convert<MyGUI::MenuItem *>::To( |
| 530 | static_cast<ThisType*>(mNative)->insertItemAt( |
| 531 | Convert<size_t>::From(_index) , |
| 532 | Convert<const MyGUI::UString &>::From(_name) , |
| 533 | Convert<MyGUI::MenuItemType>::From(_type) , |
| 534 | Convert<const std::string &>::From(_id) , |
| 535 | Convert<MyGUI::Any>::From(_data) ) ); |
| 536 | } |
| 537 | |
| 538 | Convert<MyGUI::MenuItem *>::Type InsertItemAt( |
| 539 | Convert<size_t>::Type _index , |
nothing calls this directly
no test coverage detected