mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
11 lines
227 B
C++
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);
|
|
}
|
|
}
|