| 97 | } |
| 98 | |
| 99 | MYGUIEXPORT void MYGUICALL ExportGui_SetProperty( |
| 100 | MyGUI::Widget* _widget, |
| 101 | Convert<const std::string&>::Type _key , |
| 102 | Convert<const MyGUI::UString &>::Type _value ) |
| 103 | { |
| 104 | const MyGUI::UString & value = Convert<const MyGUI::UString &>::From(_value); |
| 105 | _widget->setProperty( |
| 106 | Convert<const std::string&>::From(_key) , |
| 107 | value.asUTF8()); |
| 108 | } |
| 109 | |
| 110 | MYGUIEXPORT Convert<const std::string&>::Type MYGUICALL ExportGui_GetPath( |
| 111 | Convert<const std::string&>::Type _filename) |
no test coverage detected