/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/ThirdParty/RmlUi/Source/Core/Elements/WidgetTextInputMultiLine.cpp
19 строк
598 B
C-Core
Updated RmlUi to 6.2 and added some improvements (#1813)
10 фев 2026, 01:19
Не верифицирован
10 фев 2026, 01:19
58e2d41
Код
Авторство
О чём код?
#include "WidgetTextInputMultiLine.h" #include "../../../Include/RmlUi/Core/Dictionary.h" #include "../../../Include/RmlUi/Core/ElementText.h" #include <algorithm> namespace Rml { WidgetTextInputMultiLine::WidgetTextInputMultiLine(ElementFormControl* parent) : WidgetTextInput(parent) {} WidgetTextInputMultiLine::~WidgetTextInputMultiLine() {} void WidgetTextInputMultiLine::SanitizeValue(String& value) { value.erase(std::remove_if(value.begin(), value.end(), [](char c) { return c == '\r' || c == '\t'; }), value.end()); } void WidgetTextInputMultiLine::LineBreak() {} } // namespace Rml