summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/CFKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-11-07 08:44:53 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-11-07 08:44:53 +0100
commit696d6ffdd2404f2aca526075a0df9022e3397d72 (patch)
treea34b4a3026dbd3a2ed41794555ab2f9020c4df35 /dev/ZKAKit/CFKit
parent50c9f923a00e2fc1b80c9a7d860f96a4509d2232 (diff)
IMP: made make_application to executable, and refactor source code with
better comments. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/CFKit')
-rw-r--r--dev/ZKAKit/CFKit/Property.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKAKit/CFKit/Property.h b/dev/ZKAKit/CFKit/Property.h
index f2e4c859..212d772d 100644
--- a/dev/ZKAKit/CFKit/Property.h
+++ b/dev/ZKAKit/CFKit/Property.h
@@ -26,7 +26,7 @@ namespace CFKit
class Property
{
public:
- Property() = default;
+ Property();
virtual ~Property();
public:
@@ -39,7 +39,7 @@ namespace CFKit
private:
KString fName{kMaxPropLen};
- PropertyId fAction{No};
+ PropertyId fValue{0UL};
};
template <SizeT N>