summaryrefslogtreecommitdiffhomepage
path: root/Private/CFKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-06 14:59:15 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-06 14:59:15 +0200
commite2fd9a88d6b9def2fdebbc974001ae0778c26622 (patch)
treee4ad56f68caf7bac2b23faef1dac2b875ff2ab8b /Private/CFKit
parent32f75625830660468287de0f213baee760fc6384 (diff)
- Add documentation for PRDT struct.
- Property.hpp: change fsName to fName
Diffstat (limited to 'Private/CFKit')
-rw-r--r--Private/CFKit/Property.hpp4
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;
};