1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 13:23:53 +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
}
}