From a0f82d57976648c5bfcf165b2e304d2a4c8fb0c7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 19 Mar 2024 22:50:16 +0100 Subject: Kernel:Secret: Fix String class. Improve kernel APIs. --- Public/Kits/System.Graphics/Stylesheet.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Public/Kits/System.Graphics') 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 FromBlob(WideChar* Blob, SizeT BlobSz) { + static MutableArray FromBlob(Char* Blob, SizeT BlobSz) { MutableArray stylesheet; if (!Blob || BlobSz < 1) return stylesheet; for (auto BlobIndex = 0UL; BlobIndex < BlobSz; ++BlobIndex) { + } return stylesheet; -- cgit v1.2.3