| 396 | } |
| 397 | public: |
| 398 | Convert<MyGUI::MenuItem *>::Type FindItemWith( |
| 399 | Convert<const MyGUI::UString &>::Type _name ) |
| 400 | { |
| 401 | MMYGUI_CHECK_NATIVE(mNative); |
| 402 | return Convert<MyGUI::MenuItem *>::To( |
| 403 | static_cast<ThisType*>(mNative)->findItemWith( |
| 404 | Convert<const MyGUI::UString &>::From(_name) ) ); |
| 405 | } |
| 406 | public: |
| 407 | Convert<size_t>::Type FindItemIndex( |
| 408 | Convert<MyGUI::MenuItem *>::Type _item ) |
nothing calls this directly
no test coverage detected