1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 19:59:55 +00:00
openmw/components/lua_ui/textedit.cpp

10 lines
227 B
C++

#include "textedit.hpp"
namespace LuaUi
{
void LuaTextEdit::setProperties(sol::object props)
{
setCaption(parseProperty(props, "caption", std::string()));
WidgetExtension::setProperties(props);
}
}