| 183 | } |
| 184 | public: |
| 185 | void SetRealSize( |
| 186 | Convert<float>::Type _width , |
| 187 | Convert<float>::Type _height ) |
| 188 | { |
| 189 | MMYGUI_CHECK_NATIVE(mNative); |
| 190 | static_cast<ThisType*>(mNative)->setRealSize( |
| 191 | Convert<float>::From(_width) , |
| 192 | Convert<float>::From(_height) ); |
| 193 | } |
| 194 | public: |
| 195 | void SetRealPosition( |
| 196 | Convert<float>::Type _left , |
nothing calls this directly
no test coverage detected