aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style/CursorStylerMapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/mapper/style/CursorStylerMapper.h')
-rw-r--r--include/cru/ui/mapper/style/CursorStylerMapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/mapper/style/CursorStylerMapper.h b/include/cru/ui/mapper/style/CursorStylerMapper.h
index c88a5170..54ade7f0 100644
--- a/include/cru/ui/mapper/style/CursorStylerMapper.h
+++ b/include/cru/ui/mapper/style/CursorStylerMapper.h
@@ -5,7 +5,7 @@
namespace cru::ui::mapper::style {
class CRU_UI_API CursorStylerMapper
- : public BasicClonablePtrMapper<ui::style::CursorStyler>,
+ : public BasicClonePtrMapper<ui::style::CursorStyler>,
public virtual IStylerMapper {
public:
CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(CursorStylerMapper)
@@ -14,13 +14,13 @@ class CRU_UI_API CursorStylerMapper
bool SupportMapFromXml() override { return true; }
bool XmlElementIsOfThisType(xml::XmlElementNode* node) override;
- ClonablePtr<ui::style::Styler> MapStylerFromXml(
+ ClonePtr<ui::style::Styler> MapStylerFromXml(
xml::XmlElementNode* node) override {
return MapFromXml(node);
}
protected:
- ClonablePtr<ui::style::CursorStyler> DoMapFromXml(
+ ClonePtr<ui::style::CursorStyler> DoMapFromXml(
xml::XmlElementNode* node) override;
};
} // namespace cru::ui::mapper::style