| 550 | } |
| 551 | |
| 552 | void InsertColumnAt( |
| 553 | Convert<size_t>::Type _column , |
| 554 | Convert<const MyGUI::UString &>::Type _name , |
| 555 | Convert<int>::Type _width ) |
| 556 | { |
| 557 | MMYGUI_CHECK_NATIVE(mNative); |
| 558 | static_cast<ThisType*>(mNative)->insertColumnAt( |
| 559 | Convert<size_t>::From(_column) , |
| 560 | Convert<const MyGUI::UString &>::From(_name) , |
| 561 | Convert<int>::From(_width) ); |
| 562 | } |
| 563 | public: |
| 564 | void SetCoord( |
| 565 | Convert<int>::Type _left , |
nothing calls this directly
no test coverage detected