summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Graphics
diff options
context:
space:
mode:
authoramlal <amlal@el-mahrouss-logic.com>2024-03-16 14:22:21 +0100
committeramlal <amlal@el-mahrouss-logic.com>2024-03-16 14:22:21 +0100
commit55059428bfd6a18451bc1ed3ee64e7bb04c395cd (patch)
tree02dd524a2249111e30d2208fd700fa72e31182db /Public/Kits/System.Graphics
parent8f9b5e08f53f6e49a1f4c6b20e17c54298da9c44 (diff)
HCR-14: See below.
- Pretty big modifications, add kernel mouse. Signed-off-by: amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Graphics')
-rw-r--r--Public/Kits/System.Graphics/Core.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Public/Kits/System.Graphics/Core.hxx b/Public/Kits/System.Graphics/Core.hxx
index d0f62418..43751891 100644
--- a/Public/Kits/System.Graphics/Core.hxx
+++ b/Public/Kits/System.Graphics/Core.hxx
@@ -22,7 +22,7 @@
#define $() HCore::GApplication::Shared()->Document()
-#ifdef __IMPORT_LIB
+#ifndef __EXPORT_LIB
#define G_API __attribute__((pef_container(".IMPORT")))
#else
#define G_API __attribute__((pef_container(".EXPORT")))
@@ -167,11 +167,11 @@ class GException final {
HCORE_COPY_DEFAULT(GException);
public:
- const char* Name() { return "GUI Error"; }
+ const char* Name() { return "User Interface error."; }
const char* Reason() { return mReason; }
private:
- const char* mReason{"CoreAPI: GUI Exception!"};
+ const char* mReason{"System.Graphics: User Interface error. Check HError."};
};
template <typename GFrameType, typename GFrameBase>