1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 00:39:59 +00:00
OpenMW/components/lua_ui/textedit.cpp

11 lines
227 B
C++

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