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

12 lines
205 B
C++
Raw Normal View History

2021-11-18 15:19:54 +00:00
#include "textedit.hpp"
namespace LuaUi
{
2022-01-28 09:31:45 +00:00
void LuaTextEdit::updateProperties()
2021-11-18 15:19:54 +00:00
{
2022-01-28 09:31:45 +00:00
setCaption(propertyValue("caption", std::string()));
WidgetExtension::updateProperties();
2021-11-18 15:19:54 +00:00
}
}