diff options
Diffstat (limited to 'Private/CFKit')
| -rw-r--r-- | Private/CFKit/Property.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/CFKit/Property.hpp b/Private/CFKit/Property.hpp index 243580fc..ea427481 100644 --- a/Private/CFKit/Property.hpp +++ b/Private/CFKit/Property.hpp @@ -17,7 +17,7 @@ using PropertyId = Int; class Property { public: - explicit Property(const StringView &sw) : fsName(sw) {} + explicit Property(const StringView &sw) : fName(sw) {} virtual ~Property() = default; @@ -29,7 +29,7 @@ class Property { const PropertyId &GetPropertyById(); private: - Ref<StringView> fsName; + Ref<StringView> fName; PropertyId fAction; }; |
