summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Graphics/Stylesheet.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Kits/System.Graphics/Stylesheet.hxx')
-rw-r--r--Public/Kits/System.Graphics/Stylesheet.hxx3
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;