aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style/FontStylerMapper.h
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-11-16 10:37:36 +0800
committerYuqian Yang <crupest@crupest.life>2025-11-16 11:00:52 +0800
commit4e0b7d82cd64ef8016dcb49247a8a5e4de8a0b3d (patch)
tree9e3226a79945ee02686aa2a8b2db4031937d20dc /include/cru/ui/mapper/style/FontStylerMapper.h
parent6753cf4430704de0cc83ebd83425b5e3be430ad4 (diff)
downloadcru-4e0b7d82cd64ef8016dcb49247a8a5e4de8a0b3d.tar.gz
cru-4e0b7d82cd64ef8016dcb49247a8a5e4de8a0b3d.tar.bz2
cru-4e0b7d82cd64ef8016dcb49247a8a5e4de8a0b3d.zip
Rename ClonePtr, update theme.
Diffstat (limited to 'include/cru/ui/mapper/style/FontStylerMapper.h')
-rw-r--r--include/cru/ui/mapper/style/FontStylerMapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/mapper/style/FontStylerMapper.h b/include/cru/ui/mapper/style/FontStylerMapper.h
index 34c94b73..6a79eb99 100644
--- a/include/cru/ui/mapper/style/FontStylerMapper.h
+++ b/include/cru/ui/mapper/style/FontStylerMapper.h
@@ -3,7 +3,7 @@
#include "IStylerMapper.h"
namespace cru::ui::mapper::style {
-class FontStylerMapper : public BasicClonablePtrMapper<ui::style::FontStyler>,
+class FontStylerMapper : public BasicClonePtrMapper<ui::style::FontStyler>,
public virtual IStylerMapper {
public:
FontStylerMapper();
@@ -12,13 +12,13 @@ class FontStylerMapper : public BasicClonablePtrMapper<ui::style::FontStyler>,
public:
bool SupportMapFromXml() override { return true; }
- ClonablePtr<ui::style::Styler> MapStylerFromXml(
+ ClonePtr<ui::style::Styler> MapStylerFromXml(
xml::XmlElementNode* node) override {
return MapFromXml(node);
}
protected:
- ClonablePtr<ui::style::FontStyler> DoMapFromXml(
+ ClonePtr<ui::style::FontStyler> DoMapFromXml(
xml::XmlElementNode* node) override;
};
} // namespace cru::ui::mapper::style