diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-19 22:50:16 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-19 22:50:16 +0100 |
| commit | a0f82d57976648c5bfcf165b2e304d2a4c8fb0c7 (patch) | |
| tree | c24cd3e850a9fc47b352ac8efa50a93b28388925 /Public/Kits/System.Graphics | |
| parent | de413aa50bac1342e4ac8c7a66697ea3b551c2e4 (diff) | |
Kernel:Secret: Fix String class.
Improve kernel APIs.
Diffstat (limited to 'Public/Kits/System.Graphics')
| -rw-r--r-- | Public/Kits/System.Graphics/Stylesheet.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Public/Kits/System.Graphics/Stylesheet.hxx b/Public/Kits/System.Graphics/Stylesheet.hxx index 79efbcf4..f4106a7b 100644 --- a/Public/Kits/System.Graphics/Stylesheet.hxx +++ b/Public/Kits/System.Graphics/Stylesheet.hxx @@ -35,12 +35,13 @@ class G_API GStylesheet final { class StylesheetParser final { public: - static MutableArray<GStylesheet> FromBlob(WideChar* Blob, SizeT BlobSz) { + static MutableArray<GStylesheet> FromBlob(Char* Blob, SizeT BlobSz) { MutableArray<GStylesheet> stylesheet; if (!Blob || BlobSz < 1) return stylesheet; for (auto BlobIndex = 0UL; BlobIndex < BlobSz; ++BlobIndex) { + } return stylesheet; |
