diff options
author | crupest <crupest@outlook.com> | 2022-02-21 18:44:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-21 18:44:40 +0800 |
commit | ced1a63686e6c64cb574d74a34d1bbd07d0a668e (patch) | |
tree | 4082e4689e5e7cede8d59a0538d0f1ae37064acb /src/win/gui/GodWindow.cpp | |
parent | 6b00fca7c662301bf657a99cb1e89f21541a46bc (diff) | |
download | cru-ced1a63686e6c64cb574d74a34d1bbd07d0a668e.tar.gz cru-ced1a63686e6c64cb574d74a34d1bbd07d0a668e.tar.bz2 cru-ced1a63686e6c64cb574d74a34d1bbd07d0a668e.zip |
...
Diffstat (limited to 'src/win/gui/GodWindow.cpp')
-rw-r--r-- | src/win/gui/GodWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win/gui/GodWindow.cpp b/src/win/gui/GodWindow.cpp index 0c385bea..4416870f 100644 --- a/src/win/gui/GodWindow.cpp +++ b/src/win/gui/GodWindow.cpp @@ -1,6 +1,6 @@ #include "cru/win/gui/GodWindow.h" -#include "cru/common/Logger.h" +#include "cru/common/log/Logger.h" #include "cru/win/gui/Exception.h" #include "cru/win/gui/UiApplication.h" #include "cru/win/gui/WindowClass.h" @@ -43,7 +43,7 @@ GodWindow::GodWindow(WinUiApplication* application) { GodWindow::~GodWindow() { if (!::DestroyWindow(hwnd_)) { // Although this could be "safely" ignore. - log::TagWarn(log_tag, u"Failed to destroy god window."); + CRU_LOG_WARN(u"Failed to destroy god window."); } } |