diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-28 19:29:04 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-28 19:29:04 +0100 |
| commit | 0511c53e648e5f253cd9e83c9e211aa6600db377 (patch) | |
| tree | 84cabfcb7c3b77d554c6c217ff32c1c5c39d74d5 /dev/ZKAKit/CFKit | |
| parent | d5c125378d54ceaad7e34e8bac337d9b4665573e (diff) | |
META: Bumping source code.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/CFKit')
| -rw-r--r-- | dev/ZKAKit/CFKit/GUIDWizard.h | 4 | ||||
| -rw-r--r-- | dev/ZKAKit/CFKit/Property.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev/ZKAKit/CFKit/GUIDWizard.h b/dev/ZKAKit/CFKit/GUIDWizard.h index b4a92249..25fd5a30 100644 --- a/dev/ZKAKit/CFKit/GUIDWizard.h +++ b/dev/ZKAKit/CFKit/GUIDWizard.h @@ -13,12 +13,12 @@ #include <NewKit/ErrorOr.h> #include <NewKit/Ref.h> #include <NewKit/Stream.h> -#include <NewKit/String.h> +#include <NewKit/KString.h> namespace CFKit::XRN::Version1 { using namespace Kernel; Ref<GUIDSequence*> cf_make_sequence(const ArrayList<UInt32>& seq); - ErrorOr<Ref<Kernel::StringView>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid); + ErrorOr<Ref<Kernel::KString>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid); } // namespace CFKit::XRN::Version1 diff --git a/dev/ZKAKit/CFKit/Property.h b/dev/ZKAKit/CFKit/Property.h index efdb9879..1e8e026e 100644 --- a/dev/ZKAKit/CFKit/Property.h +++ b/dev/ZKAKit/CFKit/Property.h @@ -10,7 +10,7 @@ #include <NewKit/Array.h> #include <NewKit/Defines.h> #include <NewKit/Function.h> -#include <NewKit/String.h> +#include <NewKit/KString.h> #define kMaxPropLen 255 @@ -33,12 +33,12 @@ namespace CFKit Property& operator=(const Property&) = default; Property(const Property&) = default; - bool StringEquals(StringView& name); + bool StringEquals(KString& name); PropertyId& GetValue(); - StringView& GetKey(); + KString& GetKey(); private: - StringView fName{kMaxPropLen}; + KString fName{kMaxPropLen}; PropertyId fAction{No}; }; |
