summaryrefslogtreecommitdiffhomepage
path: root/Public
diff options
context:
space:
mode:
Diffstat (limited to 'Public')
-rw-r--r--Public/Kits/GKit/Core.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Public/Kits/GKit/Core.hpp b/Public/Kits/GKit/Core.hpp
index 00ae524e..39eb341b 100644
--- a/Public/Kits/GKit/Core.hpp
+++ b/Public/Kits/GKit/Core.hpp
@@ -132,12 +132,12 @@ class G_API GApplication final {
GDocument* Document() noexcept { return nullptr; }
- GApplication* Shared() noexcept {
- STATIC GApplication* gApp = nullptr;
+ static GApplication* Shared() noexcept {
+ STATIC GApplication* kApp = nullptr;
- if (!gApp) gApp = new GApplication();
+ if (!kApp) kApp = new GApplication();
- return gApp;
+ return kApp;
}
};