You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/lua_ui/textedit.cpp

11 lines
227 B
C++

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