diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-15 08:03:35 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-15 08:03:35 +0100 |
| commit | b3e76bf866b4223390585589786600475c9fdcae (patch) | |
| tree | 7b10c496e94aa98dedf441f67fb39d0aaa7fbda9 /Public/Kits/System.Graphics/Core.hxx | |
| parent | 159d312c0dd3c02995950270e173cc10ade273cf (diff) | |
API: Inconsitency fix.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Graphics/Core.hxx')
| -rw-r--r-- | Public/Kits/System.Graphics/Core.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Public/Kits/System.Graphics/Core.hxx b/Public/Kits/System.Graphics/Core.hxx index db9aa36f..d0f62418 100644 --- a/Public/Kits/System.Graphics/Core.hxx +++ b/Public/Kits/System.Graphics/Core.hxx @@ -14,7 +14,7 @@ #pragma once -#include <CompilerKit/CompilerKit.hpp> +#include <CompilerKit/CompilerKit.hxx> #include <NewKit/Array.hpp> #include <NewKit/Defines.hpp> #include <NewKit/Ref.hpp> @@ -28,7 +28,7 @@ #define G_API __attribute__((pef_container(".EXPORT"))) #endif // ifdef __EXPORT_LIB -namespace HCore { +namespace System::Graphics { template <typename... T> class GAction; @@ -143,7 +143,7 @@ class G_API GApplication final { class G_API GDocument final { public: - explicit GDocument(StringView& sv) : mString(GString::Construct(sv)) {} + explicit GDocument(HCore::StringView& sv) : mString(GString::Construct(sv)) {} ~GDocument() = default; HCORE_COPY_DEFAULT(GDocument); @@ -182,4 +182,4 @@ inline GFrameType* frame_cast(GFrameBase* Frame) { return dynamic_cast<GFrameType*>(Frame); } -} // namespace HCore +} // namespace System::Graphics |
