From 9f419314b646bf57dfc3fcbb509b3be2c974e3fd Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 17 Oct 2025 14:33:16 +0800 Subject: Remove String on Linux. --- include/cru/ui/mapper/StringMapper.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/cru/ui/mapper/StringMapper.h') diff --git a/include/cru/ui/mapper/StringMapper.h b/include/cru/ui/mapper/StringMapper.h index 01f58c77..e41ee0f9 100644 --- a/include/cru/ui/mapper/StringMapper.h +++ b/include/cru/ui/mapper/StringMapper.h @@ -1,10 +1,10 @@ #pragma once #include "Mapper.h" -#include +#include namespace cru::ui::mapper { -class CRU_UI_API StringMapper : public BasicMapper { +class CRU_UI_API StringMapper : public BasicMapper { public: StringMapper(); ~StringMapper(); @@ -14,7 +14,7 @@ class CRU_UI_API StringMapper : public BasicMapper { bool SupportMapFromXml() override { return true; } protected: - String DoMapFromString(std::string str) override; - String DoMapFromXml(xml::XmlElementNode* node) override; + std::string DoMapFromString(std::string str) override; + std::string DoMapFromXml(xml::XmlElementNode* node) override; }; } // namespace cru::ui::mapper -- cgit v1.2.3