aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style/AndConditionMapper.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/AndConditionMapper.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/AndConditionMapper.h')
-rw-r--r--include/cru/ui/mapper/style/AndConditionMapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/mapper/style/AndConditionMapper.h b/include/cru/ui/mapper/style/AndConditionMapper.h
index 65d0337c..5569e0fc 100644
--- a/include/cru/ui/mapper/style/AndConditionMapper.h
+++ b/include/cru/ui/mapper/style/AndConditionMapper.h
@@ -4,7 +4,7 @@
namespace cru::ui::mapper::style {
class CRU_UI_API AndConditionMapper
- : public BasicClonablePtrMapper<ui::style::AndCondition>,
+ : public BasicClonePtrMapper<ui::style::AndCondition>,
public virtual IConditionMapper {
public:
CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(AndConditionMapper)
@@ -13,13 +13,13 @@ class CRU_UI_API AndConditionMapper
bool SupportMapFromXml() override { return true; }
bool XmlElementIsOfThisType(xml::XmlElementNode* node) override;
- ClonablePtr<ui::style::Condition> MapConditionFromXml(
+ ClonePtr<ui::style::Condition> MapConditionFromXml(
xml::XmlElementNode* node) override {
return MapFromXml(node);
}
protected:
- ClonablePtr<ui::style::AndCondition> DoMapFromXml(
+ ClonePtr<ui::style::AndCondition> DoMapFromXml(
xml::XmlElementNode* node) override;
};
} // namespace cru::ui::mapper::style